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

ExcelCell() public method

public ExcelCell ( object val, string formula, int colIndex, int rowIndex ) : System
val object
formula string
colIndex int
rowIndex int
return System
        public ExcelCell(object val, string formula, int colIndex, int rowIndex)
        {
            Value = val;
            Formula = formula;
            ColIndex = colIndex;
            RowIndex = rowIndex;
        }
ExcelCell