Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / LayoutManager Class / UnMerge Method / UnMerge(Int32,Int32) Method
An integer value indicates the row index of the cell which belongs to the merged area.
An integer value indicates the column index of the cell which belongs to the merged area.


In This Topic
    UnMerge(Int32,Int32) Method
    In This Topic
    Separates a merged area into individual cells.
    Syntax
    'Declaration
     
    
    Public Overloads Function UnMerge( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As LayoutManager
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.UnMerge(row, column)
    public bool UnMerge( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index of the cell which belongs to the merged area.
    column
    An integer value indicates the column index of the cell which belongs to the merged area.

    Return Value

    true if there is at least one unmerged area, false otherwise.
    See Also