Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Charts Namespace / ICharts Interface / Add Method / Add(String,String,Int32) Method
A string value that specifies the sheet before which the new sheet is added. You cannot specify before if you specify after.
A string value that specifies 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(String,String,Int32) Method
    In This Topic
    Inserts a chart directly onto the grid.
    Syntax
    'Declaration
     
    
    Overloads Sub Add( _
       Optional ByVal before As String, _
       Optional ByVal after As String, _
       Optional ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As ICharts
    Dim before As String
    Dim after As String
    Dim count As Integer
     
    instance.Add(before, after, count)
    void Add( 
       string before,
       string after,
       int count
    )

    Parameters

    before
    A string value that specifies the sheet before which the new sheet is added. You cannot specify before if you specify after.
    after
    A string value that specifies 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