Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetSpanCell Method / GetSpanCell(Int32,Int32) Method
The row index.
The column index.


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

    Parameters

    row
    The row index.
    column
    The column index.

    Return Value

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