コード例 #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);
 }