コード例 #1
0
 internal ExcelSheet(ExcelBook excel, ISheet sheet)
 {
     if (sheet is null)
     {
         throw new ArgumentException("Cannot find sheet.");
     }
     Book       = excel;
     MapedSheet = sheet;
     Cursor     = (0, 0);
 }
コード例 #2
0
 internal CFont(ExcelBook book, IFont cellStyle)
 {
     Book = book;
     Font = cellStyle;
 }
コード例 #3
0
 internal CFont(ExcelBook book)
     : this(book, book.MapedWorkbook.CreateFont())
 {
 }
コード例 #4
0
ファイル: CStyle.cs プロジェクト: zmjack/ExcelSharp
 internal CStyle(ExcelBook book, ICellStyle cellStyle)
 {
     Book      = book;
     CellStyle = cellStyle;
 }
コード例 #5
0
ファイル: CStyle.cs プロジェクト: zmjack/ExcelSharp
 internal CStyle(ExcelBook book)
     : this(book, book.MapedWorkbook.CreateCellStyle())
 {
 }