Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Commands Namespace / TableActionsCommand Class / DeleteRows Method
The source table.
the specified index is being process.
the specified number of row is being extend


In This Topic
    DeleteRows Method
    In This Topic
    Create new table action command for delete row(s) at specified row index.
    Syntax
    'Declaration
     
    
    Public Shared Function DeleteRows( _
       ByVal table As ITable, _
       ByVal indices() As Integer, _
       ByVal counts() As Integer _
    ) As TableActionsCommand
    'Usage
     
    
    Dim table As ITable
    Dim indices() As Integer
    Dim counts() As Integer
    Dim value As TableActionsCommand
     
    value = TableActionsCommand.DeleteRows(table, indices, counts)
    public static TableActionsCommand DeleteRows( 
       ITable table,
       int[] indices,
       int[] counts
    )

    Parameters

    table
    The source table.
    indices
    the specified index is being process.
    counts
    the specified number of row is being extend
    See Also