Ejemplo n.º 1
0
        internal ExcelWorksheet(string name, ExcelDocument parentDoc)
        {
            _name         = name;
            this.Document = parentDoc;
            this.Rows     = new ExcelRows(this);
            this.Columns  = new ExcelColumns(this);
            this.Cells    = new ExcelCells(this);

            _sheetCache = new WorksheetCache(this);
            _sheetCache.Load();
        }
Ejemplo n.º 2
0
 public CellProxy(WorksheetCache wscache)
 {
     _wscache = wscache;
 }
 public CellFormulaProxy(WorksheetCache wscache)
 {
     _wscache = wscache;
 }