Spread WPF 17
GrapeCity.Excel Namespace / ExcelWorksheet Class / SetColumn Method
The zero-based index of the column
An IExcelColumn used to initialize the column at the specified index


In This Topic
    SetColumn Method (ExcelWorksheet)
    In This Topic
    Initialize the column at the specified index.
    Syntax
    'Declaration
     
    Public Sub SetColumn( _
       ByVal index As Integer, _
       ByVal column As IExcelColumn _
    ) 
    'Usage
     
    Dim instance As ExcelWorksheet
    Dim index As Integer
    Dim column As IExcelColumn
     
    instance.SetColumn(index, column)
    public void SetColumn( 
       int index,
       IExcelColumn column
    )

    Parameters

    index
    The zero-based index of the column
    column
    An IExcelColumn used to initialize the column at the specified index
    See Also