ExcelFormulaParser.Engine.ParsedValue.ParsedValue C# (CSharp) Method

ParsedValue() public method

public ParsedValue ( object val, int rowIndex, int colIndex ) : System
val object
rowIndex int
colIndex int
return System
        public ParsedValue(object val, int rowIndex, int colIndex)
        {
            Value = val;
            RowIndex = rowIndex;
            ColIndex = colIndex;
        }
ParsedValue