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


In This Topic
    InsertColumns Method (TableActionsCommand)
    In This Topic
    Create new table action command for insert column(s) at specified column index.
    Syntax
    'Declaration
     
    
    Public Shared Function InsertColumns( _
       ByVal table As ITable, _
       ByVal index As Integer, _
       ByVal count As Integer _
    ) As TableActionsCommand
    'Usage
     
    
    Dim table As ITable
    Dim index As Integer
    Dim count As Integer
    Dim value As TableActionsCommand
     
    value = TableActionsCommand.InsertColumns(table, index, count)
    public static TableActionsCommand InsertColumns( 
       ITable table,
       int index,
       int count
    )

    Parameters

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