Beispiel #1
0
        public ExcelCell(ExcelWorkbook wb, ExcelSheet sheet, UInt32 row, UInt32 column)
        {
            if (wb == null)
                throw new ArgumentException("Workbook cannot be null!");
            if (sheet == null)
                throw new ArgumentException("Sheet cannot be null!");

            //this.Style = new Style(wb);
            //TODO!! Set StyleIndex to the wb's default style
            this.Workbook = wb;
            this.Sheet = sheet;
            this.Column = column;
            this.Row = row;
        }
Beispiel #2
0
 public ExcelRange(ExcelWorkbook wb, ExcelSheet sheet)
 {
     throw new NotImplementedException("Write test first!");
 }