Example #1
0
 public CellInfo(ExcelDocument document)
 {
     this.BackColor = ExcelColor.Automatic;
     this.ForeColor = ExcelColor.Automatic;
     this.Font = document.DefaultFont;
     this.Document = document;
 }
Example #2
0
File: Cell.cs Project: ozotony/payx
 internal Cell(int row, int column, ExcelDocument document)
 {
     this.document = document;
     this.cellInfo = document.GetCellInfo(row, column);
 }