Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Charts Namespace / ICharts Interface / Copy Method / Copy(Int32,Int32) Method
The sheet before which the copied sheet will be placed. You cannot specify before if you specify after.
The sheet after which the copied sheet will be placed. You cannot specify after if you specify before.


In This Topic
    Copy(Int32,Int32) Method
    In This Topic
    Copies the sheet to another location in the workbook.
    Syntax
    'Declaration
     
    
    Overloads Sub Copy( _
       Optional ByVal before As Integer, _
       Optional ByVal after As Integer _
    ) 
    'Usage
     
    
    Dim instance As ICharts
    Dim before As Integer
    Dim after As Integer
     
    instance.Copy(before, after)
    void Copy( 
       int before,
       int after
    )

    Parameters

    before
    The sheet before which the copied sheet will be placed. You cannot specify before if you specify after.
    after
    The sheet after which the copied sheet will be placed. You cannot specify after if you specify before.
    See Also