Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Table Class / RemoveColumns Method
An integer value indicates the index to insert.
An integer value indicates the removed column count.


In This Topic
    RemoveColumns Method (Table)
    In This Topic
    Removes table column(s) at the specified index.
    Syntax
    'Declaration
     
    
    Public Function RemoveColumns( _
       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.RemoveColumns(index, count)
    public ActionResult<Table> RemoveColumns( 
       int index,
       int count
    )

    Parameters

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

    Return Value

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