Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Columns Class / Remove Method
Column number at which to start
Number of columns to remove
Example


In This Topic
    Remove Method (Columns)
    In This Topic
    Removes a column or range of columns.
    Syntax
    'Declaration
     
    
    Public Sub Remove( _
       ByVal index As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As Columns
    Dim index As Integer
    Dim count As Integer
     
    instance.Remove(index, count)
    public void Remove( 
       int index,
       int count
    )

    Parameters

    index
    Column number at which to start
    count
    Number of columns to remove
    Example
    This example removes all but the first column in a default sheet.
    See Also