[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.Charts.ICharts.Copy

Copy Method

Copy(string, string)

Copies the sheet to another location in the workbook.

Declaration
void Copy(string before = null, string after = null)
Sub Copy(Optional before As String = Nothing, Optional after As String = Nothing)
Parameters
Type Name Description
string before

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

string after

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

Copy(int, int)

Copies the sheet to another location in the workbook.

Declaration
void Copy(int before = -1, int after = -1)
Sub Copy(Optional before As Integer = -1, Optional after As Integer = -1)
Parameters
Type Name Description
int before

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

int after

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