Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / RemoveColumns Method / RemoveColumns(Int32,Int32,SheetArea) Method
The index of the first column to remove.
The number of columns to remove.
The sheet area from which to remove columns.


In This Topic
    RemoveColumns(Int32,Int32,SheetArea) Method
    In This Topic
    Removes the column or columns on this sheet at the specified index in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Sub RemoveColumns( _
       ByVal column As Integer, _
       ByVal count As Integer, _
       ByVal sheetArea As SheetArea _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim column As Integer
    Dim count As Integer
    Dim sheetArea As SheetArea
     
    instance.RemoveColumns(column, count, sheetArea)
    public void RemoveColumns( 
       int column,
       int count,
       SheetArea sheetArea
    )

    Parameters

    column
    The index of the first column to remove.
    count
    The number of columns to remove.
    sheetArea
    The sheet area from which to remove columns.
    See Also