1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace HH.WMS.Utils.NPOI.SS.UserModel
| {
| public interface ICellRange<T> : IEnumerable<T> where T : ICell
| {
| int Width { get; }
| int Height { get; }
| int Size { get; }
| string ReferenceText { get; }
| T TopLeftCell { get; }
| T GetCell(int relativeRowIndex, int relativeColumnIndex);
| T[] FlattenedCells{get;}
| T[][] Cells { get; }
| }
| }
|
|