ExcelFormulaParser.Engine.Excel.Functions.RefAndLookup.LookupNavigator.Initialize C# (CSharp) 메소드

Initialize() 개인적인 메소드

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