Spread WinForms 15
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Storages Namespace / MergedCellStorage Class / UnMerge(Int32,Int32,Int32,Int32,Boolean) Method
An integer value indicates the top row index of the reference which belongs to the merged area.
An integer value indicates the left column index of the reference which belongs to the merged area.
An integer value indicates the bottom row index of the reference which belongs to the merged area.
An integer value indicates the right column index of the reference which belongs to the merged area.
Unmerges if the cell range overlaps the merged cells.


In This Topic
UnMerge(Int32,Int32,Int32,Int32,Boolean) Method
In This Topic
Separates a merged area into individual cells.
Syntax
'Declaration
 
Public Function UnMerge( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal row2 As Integer, _
   ByVal column2 As Integer, _
   Optional ByVal overlap As Boolean _
) As Boolean
 
'Usage
 
Dim instance As MergedCellStorage
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim overlap As Boolean
Dim value As Boolean
 
value = instance.UnMerge(row, column, row2, column2, overlap)

Parameters

row
An integer value indicates the top row index of the reference which belongs to the merged area.
column
An integer value indicates the left column index of the reference which belongs to the merged area.
row2
An integer value indicates the bottom row index of the reference which belongs to the merged area.
column2
An integer value indicates the right column index of the reference which belongs to the merged area.
overlap
Unmerges if the cell range overlaps the merged cells.
See Also