Spread WPF 17
GrapeCity.Excel Namespace / IExcelWorksheet Interface / GetSpanCell Method
The row index
The column index


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

    Parameters

    row
    The row index
    column
    The column index

    Return Value

    Returns a IRange object containing the span information, or null if no span exists.
    See Also