Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetDataModel Class / RemoveColumns Method
Index of first column to remove
Number of columns to remove


In This Topic
    RemoveColumns Method (DefaultSheetDataModel)
    In This Topic
    Removes one or more columns starting with the column at the specified position.
    Syntax
    'Declaration
     
    
    Public Sub RemoveColumns( _
       ByVal column As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim column As Integer
    Dim count As Integer
     
    instance.RemoveColumns(column, count)
    public void RemoveColumns( 
       int column,
       int count
    )

    Parameters

    column
    Index of first column to remove
    count
    Number of columns to remove
    Exceptions
    ExceptionDescription
    Specified column is out of range; must be between 0 and total number of columns
    Specified number of columns is out of range; must be between 1 and total number of columns beyond the specified starting column
    See Also