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