Esempio n. 1
0
        public IExcelCells get_Cells(int Row, int Col, int Height, int Width)
        {
            ExcelCells iCell = new ExcelCells(this, this, workBook, currentSheet, Row, Col, Height, Width, IsReadOnly());

            iCell.FitColumnWidth = autoFit;
            return(iCell);
        }
Esempio n. 2
0
        public IExcelCells Cells(int Row, int Col, int Height, int Width)
        {
            ExcelCells iCell = new ExcelCells((IGxError)this, this, workBook, currentSheet, Row - 1, Col - 1, Height, Width, IsReadOnly());

            return(iCell);
        }