Finds tables intersected in a range.
Syntax
'Declaration
Public Shared Sub FindRange( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer, _
ByVal As ITableRangeManager, _
ByVal As Integer, _
ByVal maxColumnCount As Integer, _
ByRef As List(Of ITableRange), _
ByRef As List(Of ITableRange) _
)
'Usage
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim manger As ITableRangeManager
Dim maxRowcount As Integer
Dim maxColumnCount As Integer
Dim inRangeTables As List(Of ITableRange)
Dim intersectTables As List(Of ITableRange)
TableUtils.FindRange(row, column, rowCount, columnCount, manger, maxRowcount, maxColumnCount, inRangeTables, intersectTables)
Parameters
- row
- Row index of range
- column
- Column index of range
- rowCount
- Number of rows in range
- columnCount
- Number of columns in range
- manger
- The manager of the range
- maxRowcount
- Maximum number of rows in the range
- maxColumnCount
- Maximum number of columns in the range
- inRangeTables
- Number of tables in the range
- intersectTables
- List of tables intersected with the range
See Also