Spread WPF 17
GrapeCity.Excel Namespace / IExcelWorksheet Interface / GetRow Method
The zero-based index of the row.
If set to true. It will create the column if the row is null at the specified index when the index is in the valid range


In This Topic
    GetRow Method (IExcelWorksheet)
    In This Topic
    Gets the row at the specified column index
    Syntax
    'Declaration
     
    Function GetRow( _
       ByVal index As Integer, _
       Optional ByVal create As Boolean _
    ) As IExcelRow
    'Usage
     
    Dim instance As IExcelWorksheet
    Dim index As Integer
    Dim create As Boolean
    Dim value As IExcelRow
     
    value = instance.GetRow(index, create)
    IExcelRow GetRow( 
       int index,
       bool create
    )

    Parameters

    index
    The zero-based index of the row.
    create
    If set to true. It will create the column if the row is null at the specified index when the index is in the valid range

    Return Value

    An IExcelRow instance represent the column at the specified index
    See Also