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

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            var factory = new RangeAddressFactory(_parsingContext.ExcelDataProvider);
            _rangeAddress = factory.Create(_arguments.RangeAddress);
            _currentCol = _rangeAddress.FromCol;
            _currentRow = _rangeAddress.FromRow;
            SetCurrentValue();
        }