Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / GetMergeCell Method
Row index of the cell
Column index of the cell
Example


In This Topic
    GetMergeCell Method
    In This Topic
    Gets the merged cell range at the specified cell.
    Syntax
    'Declaration
     
    
    Public Function GetMergeCell( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As CellRange
    'Usage
     
    
    Dim instance As FpSpread
    Dim row As Integer
    Dim column As Integer
    Dim value As CellRange
     
    value = instance.GetMergeCell(row, column)
    public CellRange GetMergeCell( 
       int row,
       int column
    )

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell

    Return Value

    CellRange object containing the range of cells
    Example
    This example sets the border style of the focus rectangle.
    See Also