Ejemplo n.º 1
0
        private static int GetExcelCols(ES.ExcelService es, string sessionId, int startRow, string sheetName, ES.Status[] outStatus)
        {
            int row = startRow;
            int col = defaultCols;

            while (es.GetCell(sessionId, sheetName, row, col, false, out outStatus) != null) {
                col += defaultCols;
            }

            return col;
        }
Ejemplo n.º 2
0
        private static int GetExcelRows(ES.ExcelService es, string sessionId,string primaryKeyValue, string sheetName, ES.Status[] outStatus)
        {
            int row = defaultRows;
            int col = ToIndex(primaryKeyValue);

            while (es.GetCell(sessionId, sheetName, row, col, false, out outStatus) != null)
            {
                row += defaultRows;
            }
            return row;
        }