Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Charts Namespace / ICharts Interface / Add Method / Add(Int32,Int32,Int32) Method
Index of the sheet before which the new sheet is added. You cannot specify before if you specify after.
Index of the sheet after which the new sheet is added. You cannot specify after if you specify before.
The number of sheets to be added.


In This Topic
    Add(Int32,Int32,Int32) Method
    In This Topic
    Inserts a chart directly onto the grid.
    Syntax
    'Declaration
     
    
    Overloads Sub Add( _
       Optional ByVal before As Integer, _
       Optional ByVal after As Integer, _
       Optional ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As ICharts
    Dim before As Integer
    Dim after As Integer
    Dim count As Integer
     
    instance.Add(before, after, count)
    void Add( 
       int before,
       int after,
       int count
    )

    Parameters

    before
    Index of the sheet before which the new sheet is added. You cannot specify before if you specify after.
    after
    Index of the sheet after which the new sheet is added. You cannot specify after if you specify before.
    count
    The number of sheets to be added.
    See Also