Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / AddColumns Method / AddColumns(Int32,Int32,SheetArea) Method
Column index at which to add the new columns.
The number of columns to add.
The sheet area to which to add columns.


In This Topic
    AddColumns(Int32,Int32,SheetArea) Method
    In This Topic
    Adds the column or columns to the data model at the specified index in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Sub AddColumns( _
       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.AddColumns(column, count, sheetArea)
    public void AddColumns( 
       int column,
       int count,
       SheetArea sheetArea
    )

    Parameters

    column
    Column index at which to add the new columns.
    count
    The number of columns to add.
    sheetArea
    The sheet area to which to add columns.
    See Also