[]
Finds an ITableRange by its name.
ITableRange Find(string tableName)
Function Find(tableName As String) As ITableRange
| Type | Name | Description |
|---|---|---|
| string | tableName | Table's name |
| Type | Description |
|---|---|
| ITableRange | An ITableRange object. Null if not found |
Finds an ITableRange from specified row and column.
ITableRange Find(int row, int column)
Function Find(row As Integer, column As Integer) As ITableRange
| Type | Name | Description |
|---|---|---|
| int | row | Row index |
| int | column | Column Index |
| Type | Description |
|---|---|
| ITableRange | An ITableRange object. Null if not found |
Gets a list of ITableRange objects from a specific cell range.
List<ITableRange> Find(int row, int col, int rowCount, int colCount)
Function Find(row As Integer, col As Integer, rowCount As Integer, colCount As Integer) As List(Of ITableRange)
| Type | Name | Description |
|---|---|---|
| int | row | Row index |
| int | col | Column index |
| int | rowCount | Row count |
| int | colCount | Column count |
| Type | Description |
|---|---|
| List<ITableRange> | A list of ITableRange object. Null if not found |