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