Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / LayoutManager Class / FindMergedCell Method / FindMergedCell(Int32,Int32,Reference) Method
An integer value indicates the top row index of the reference.
An integer value indicates the left column index of the reference.
A Reference value represents the intersected reference.


In This Topic
    FindMergedCell(Int32,Int32,Reference) Method
    In This Topic
    Finds the merged cell which intersects with the specified reference.
    Syntax
    'Declaration
     
    
    Public Overloads Function FindMergedCell( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByRef mergedCell As Reference _
    ) As Boolean
    'Usage
     
    
    Dim instance As LayoutManager
    Dim row As Integer
    Dim column As Integer
    Dim mergedCell As Reference
    Dim value As Boolean
     
    value = instance.FindMergedCell(row, column, mergedCell)
    public bool FindMergedCell( 
       int row,
       int column,
       out Reference mergedCell
    )

    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.
    mergedCell
    A Reference value represents the intersected reference.

    Return Value

    true if there is intersected merged cell; otherwise, false.
    See Also