示例#1
0
 private ExcelCell ResolveCell(Npoi.HSSFCell native)
 {
     if (!_cells.ContainsKey(native))
     {
         _cells.Add(native, new NpoiExcelCell(native));
     }
     return _cells[native];
 }
示例#2
0
 private ExcelSheet ResolveSheet(Npoi.HSSFSheet native)
 {
     if (!_sheets.ContainsKey(native))
     {
         _sheets.Add(native, new NpoiExcelSheet(native));
     }
     return _sheets[native];
 }
示例#3
0
 /// <summary>Default Constructor</summary>
 /// <param name="sheet">The native XLSX sheet</param>
 public NpoiExcelSheet(Npoi.HSSFSheet sheet)
 {
     this._sheet = sheet;
 }
示例#4
0
 /// <summary>Default constructor</summary>
 /// <param name="cell">NPOI native encapsulation of the cell.</param>
 public NpoiExcelCell(Npoi.HSSFCell cell)
 {
     _cell = cell;
 }