[]
Gets the IRange with the specified reference.
IRange this[string reference] { get; }
ReadOnly Default Property Item(reference As String) As IRange
Type | Name | Description |
---|---|---|
string | reference | A string value represents the reference of the specified cell range. |
Type | Description |
---|---|
IRange | An IRange object which provide access to cell values, formulas, formatting... |
Gets the IRange at the specified cell position.
IRange this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As IRange
Type | Name | Description |
---|---|---|
int | index | The indexed position of cell. |
Type | Description |
---|---|
IRange | An IRange object which provide access to cell values, formulas, formatting... |
Gets the IRange with the specified row and column.
IRange this[int row, int column] { get; }
ReadOnly Default Property Item(row As Integer, column As Integer) As IRange
Type | Name | Description |
---|---|---|
int | row | An integer value indicates the row index. |
int | column | An integer value indicates the column index. |
Type | Description |
---|---|
IRange | An IRange object which provide access to cell values, formulas, formatting... |
For Columns, arguments indicate the start column and end column.
For Rows, arguments indicate the start and end row.
Gets the IRange with the specified range.
IRange this[int row, int column, int row2, int column2] { get; }
ReadOnly Default Property Item(row As Integer, column As Integer, row2 As Integer, column2 As Integer) As IRange
Type | Name | Description |
---|---|---|
int | row | An integer value indicates the top row index. |
int | column | An integer value indicates the left column index. |
int | row2 | An integer value indicates the bottom row index. |
int | column2 | An integer value indicates the right column index. |
Type | Description |
---|---|
IRange | An IRange object which provide access to cell values, formulas, formatting... |
Gets the IRange with the specified range.
IRange this[Reference range] { get; }
ReadOnly Default Property Item(range As Reference) As IRange
Type | Name | Description |
---|---|---|
Reference | range | The selected range. |