ExcelFormulaParser.Engine.Excel.Functions.RefAndLookup.LookupNavigator.HasNext C# (CSharp) Méthode

HasNext() private méthode

private HasNext ( ) : bool
Résultat bool
        private bool HasNext()
        {
            if (_direction == LookupDirection.Vertical)
            {
                return _currentRow < _rangeAddress.ToRow;
            }
            else
            {
                return _currentCol < _rangeAddress.ToCol;
            }
        }