Ejemplo n.º 1
0
 public CellInfo(ExcelDocument document)
 {
     BackColor = ExcelColor.Automatic;
     ForeColor = ExcelColor.Automatic;
     Font = document.DefaultFont;
     this.Document = document;
 }
Ejemplo n.º 2
0
 internal Cell(int row, int column, ExcelDocument document)
 {
     this.document = document;
     cellInfo = document.GetCellInfo(row, column);
 }