示例#1
0
文件: Sheet.cs 项目: radtek/xlio
 public Sheet(String sheetName)
 {
     SheetName     = sheetName;
     data          = new SheetData();
     Columns       = new SheetColumnCollection();
     RowBreaks     = new List <int>();
     ColumnBreaks  = new List <int>();
     Page          = new PageSetup();
     ShowGridLines = true;
     //ConditionalFormatting = new List<ConditionalFormatting>();
     ConditionalFormatting = new List <ConditionalFormatting>();
     DefinedNames          = new DefinedNameCollection();
 }
示例#2
0
文件: Workbook.cs 项目: spofa/xlio
 public Workbook()
 {
     Sheets       = new SheetCollection();
     DefaultFont  = new CellFont();
     DefinedNames = new DefinedNameCollection();
 }