ExcelFormulaParser.Engine.Excel.Functions.RefAndLookup.LookupNavigator.HasNext C# (CSharp) Method

HasNext() private method

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