예제 #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);
 }