Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / LayoutManager Class / FindOverlapMergedCell Method
An integer value indicates the top row index of the reference.
An integer value indicates the left column index of the reference.
An integer value indicates the bottom row index of the reference.
An integer value indicates the right column index of the reference.


In This Topic
    FindOverlapMergedCell Method
    In This Topic
    Finds all merged cells which overlap the specified reference.
    Syntax
    'Declaration
     
    
    Public Function FindOverlapMergedCell( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    ) As Reference
    'Usage
     
    
    Dim instance As LayoutManager
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim value As Reference
     
    value = instance.FindOverlapMergedCell(row, column, row2, column2)
    public Reference FindOverlapMergedCell( 
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

    row
    An integer value indicates the top row index of the reference.
    column
    An integer value indicates the left column index of the reference.
    row2
    An integer value indicates the bottom row index of the reference.
    column2
    An integer value indicates the right column index of the reference.
    See Also