Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / GetSpanCell Method
Row index of the specified cell
Column index of the specified cell


In This Topic
    GetSpanCell Method
    In This Topic
    Gets the range of cells that are spanned at a specified cell on this sheet.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetSpanCell( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As CellRange
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As CellRange
     
    value = instance.GetSpanCell(row, column)
    public virtual CellRange GetSpanCell( 
       int row,
       int column
    )

    Parameters

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

    Return Value

    CellRange object that contains the span information, or null if no span exists
    See Also