Title here
Summary here
Defines a range in an excel file where the data is located.
public class ExcelRange public ExcelRange() public ExcelRange(int startColumn, int startRow)| Type | Name | Description |
|---|---|---|
| int | startColumn | |
| int | startRow |
public ExcelRange(int startColumn, int startRow, int endColumn, int endRow)| Type | Name | Description |
|---|---|---|
| int | startColumn | |
| int | startRow | |
| int | endColumn | |
| int | endRow |
The end column, column counts starts with 1. This is optional - if left empty, data will be read until the first blank row is found.
public int? EndColumn { get; set; }| Type | Description |
|---|---|
| int? |
The end row - row count starts with 1. This is optional - if left empty, data will be read until the first blank row is found.
public int? EndRow { get; set; }| Type | Description |
|---|---|
| int? |
The start column, column count starts with 1
public int StartColumn { get; set; }| Type | Description |
|---|---|
| int |
The start row, row count starts with 1
public int StartRow { get; set; }| Type | Description |
|---|---|
| int |