예제 #1
0
 internal CellFormula(ExcelWorksheet sheet, object[] resultBytes, FormulaOptions options, object[] rpnBytes)
 {
     this.sheet       = sheet;
     this.ResultBytes = resultBytes;
     this.Options     = options;
     this.RpnBytes    = rpnBytes;
 }
예제 #2
0
 internal CellFormula(object[] resultBytes, FormulaOptions options, object[] rpnBytes)
 {
     this.ResultBytes = resultBytes;
     this.Options     = options;
     this.RpnBytes    = rpnBytes;
 }
예제 #3
0
 private void SetDefaultResultAndOptions()
 {
     this.Value       = 0;
     this.ResultBytes = new object[] { (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0 };
     this.Options     = FormulaOptions.CalculateOnLoad;
 }