Determines whether the range of cells intersects the specified range.
Syntax
'Declaration
Public Function Intersects( _
ByVal As System.Integer, _
ByVal column As System.Integer, _
ByVal As System.Integer, _
ByVal columnCount As System.Integer _
) As System.Boolean
'Usage
Dim instance As CellRange
Dim row As System.Integer
Dim column As System.Integer
Dim rowCount As System.Integer
Dim columnCount As System.Integer
Dim value As System.Boolean
value = instance.Intersects(row, column, rowCount, columnCount)
public System.bool Intersects(
System.int ,
System.int column,
System.int ,
System.int columnCount
)
Parameters
- row
- The row index at the start of the range.
- column
- The column index at the start of the range.
- rowCount
- The number of rows.
- columnCount
- The number of columns.
Return Value
true
if the range intersects the specified range; otherwise, false
.
See Also