[]
Initialization range.
public XLRange(string areaRef, XLReferenceMode mode = XLReferenceMode.A1)
| Type | Name | Description |
|---|---|---|
| string | areaRef | The area reference text (for exapmle: 'A4:D8'). |
| XLReferenceMode | mode | The area reference text (for exapmle: 'A4:D8'). |
Initialization range.
public XLRange(int row, int col)
| Type | Name | Description |
|---|---|---|
| int | row | The index of the row in the cell. |
| int | col | The index of the column in the cell. |
Initialization range.
public XLRange(int rowFirst, int colFirst, int rowLast, int colLast)
| Type | Name | Description |
|---|---|---|
| int | rowFirst | The index of the top row in the range. |
| int | colFirst | The index of the left column in the range. |
| int | rowLast | The index of the bottom row in the range. |
| int | colLast | The index of the right column in the range. |