Esempio n. 1
0
 public override bool Equals(Object obj)
 {
     Fruit.Utils.NPOI.SS.UserModel.ICell cellb = ((HSSFEvaluationCell)obj)._cell;
     return(_cell.RowIndex == cellb.RowIndex &&
            _cell.ColumnIndex == cellb.ColumnIndex &&
            _cell.CellFormula == cellb.CellFormula &&
            _cell.Sheet == cellb.Sheet);
 }
Esempio n. 2
0
 public void SetProperty(Fruit.Utils.NPOI.SS.UserModel.IRow row, int column)
 {
     Fruit.Utils.NPOI.SS.UserModel.ICell cell = HSSFCellUtil.GetCell(row, column);
     HSSFCellUtil.SetCellStyleProperty(cell, _workbook, _propertyName, _propertyValue);
 }
Esempio n. 3
0
 public HSSFEvaluationCell(Fruit.Utils.NPOI.SS.UserModel.ICell cell)
 {
     _cell      = cell;
     _evalSheet = new HSSFEvaluationSheet((HSSFSheet)cell.Sheet);
 }
Esempio n. 4
0
 public HSSFEvaluationCell(Fruit.Utils.NPOI.SS.UserModel.ICell cell, IEvaluationSheet evalSheet)
 {
     _cell      = cell;
     _evalSheet = evalSheet;
 }