[]
Determines whether the range of cells intersects the specified range.
public bool Intersects(int row, int column, int rowCount, int columnCount)
Public Function Intersects(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer) As Boolean
Type | Name | Description |
---|---|---|
int | row | Row index at beginning of range |
int | column | Column index at beginning of range |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Type | Description |
---|---|
bool | true if the range of cells intersects the specified range; false otherwise |
Determines whether the range of cells intersects the specified range.
public bool Intersects(CellRange cellRange)
Public Function Intersects(cellRange As CellRange) As Boolean
Type | Name | Description |
---|---|---|
CellRange | cellRange | The specified range objectto check with |
Type | Description |
---|---|
bool | true if the range of cells intersects the specified range; false otherwise |