internal ExcelSheet(ExcelBook excel, ISheet sheet) { if (sheet is null) { throw new ArgumentException("Cannot find sheet."); } Book = excel; MapedSheet = sheet; Cursor = (0, 0); }
internal CFont(ExcelBook book, IFont cellStyle) { Book = book; Font = cellStyle; }
internal CFont(ExcelBook book) : this(book, book.MapedWorkbook.CreateFont()) { }
internal CStyle(ExcelBook book, ICellStyle cellStyle) { Book = book; CellStyle = cellStyle; }
internal CStyle(ExcelBook book) : this(book, book.MapedWorkbook.CreateCellStyle()) { }