Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Table Class / InsertColumns(Int32,Int32) Method
An integer value indicates the index to insert.
An integer value indicates the inserted column count.


In This Topic
    InsertColumns(Int32,Int32) Method
    In This Topic
    Inserts table column(s) at the specified index.
    Syntax
    'Declaration
     
    
    Public Function InsertColumns( _
       ByVal index As Integer, _
       ByVal count As Integer _
    ) As ActionResult(Of Table)
    'Usage
     
    
    Dim instance As Table
    Dim index As Integer
    Dim count As Integer
    Dim value As ActionResult(Of Table)
     
    value = instance.InsertColumns(index, count)
    public ActionResult<Table> InsertColumns( 
       int index,
       int count
    )

    Parameters

    index
    An integer value indicates the index to insert.
    count
    An integer value indicates the inserted column count.

    Return Value

    true if the inserting is done successful, false otherwise.
    See Also