Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / CellRange Class / Intersects Method / Intersects(Int32,Int32,Int32,Int32) Method
Row index at beginning of range
Column index at beginning of range
Number of rows
Number of columns


In This Topic
    Intersects(Int32,Int32,Int32,Int32) Method
    In This Topic
    Determines whether the range of cells intersects the specified range.
    Syntax
    'Declaration
     
    
    Public Overloads Function Intersects( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As CellRange
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim value As Boolean
     
    value = instance.Intersects(row, column, rowCount, columnCount)
    public bool Intersects( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    Row index at beginning of range
    column
    Column index at beginning of range
    rowCount
    Number of rows
    columnCount
    Number of columns
    See Also