internal CStyle(ExcelBook book, ICellStyle cellStyle) { Book = book; CellStyle = cellStyle; }
internal CFont(ExcelBook book, IFont cellStyle) { Book = book; Font = cellStyle; }
internal CStyle(ExcelBook book) : this(book, book.MapedWorkbook.CreateCellStyle()) { }
internal CFont(ExcelBook book) : this(book, book.MapedWorkbook.CreateFont()) { }