Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / GetMergeCells(Int32,Int32,Int32,Int32) Method
Row index of the start of the range to search for merged cells
Column index of the start of the range to search for merged cells
Number of rows of the range to search for merged cells
Number of columns of the range to search for merged cells
Example


In This Topic
    GetMergeCells(Int32,Int32,Int32,Int32) Method
    In This Topic
    Gets the merged cell ranges in the specified range.
    Syntax
    'Declaration
     
    
    Public Function GetMergeCells( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) As ArrayList
    'Usage
     
    
    Dim instance As FpSpread
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim value As ArrayList
     
    value = instance.GetMergeCells(row, column, rowCount, columnCount)
    public ArrayList GetMergeCells( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    Row index of the start of the range to search for merged cells
    column
    Column index of the start of the range to search for merged cells
    rowCount
    Number of rows of the range to search for merged cells
    columnCount
    Number of columns of the range to search for merged cells

    Return Value

    ArrayList of CellRange objects containing ranges of cells
    Example
    This example sets the border style of the focus rectangle.
    See Also