[]
Inserts a chart directly onto the grid.
void Add()
Sub Add()
Inserts a chart directly onto the grid.
void Add(string before = null, string after = null, int count = 1)
Sub Add(Optional before As String = Nothing, Optional after As String = Nothing, Optional count As Integer = 1)
| Type | Name | Description |
|---|---|---|
| string | before | A string value that specifies the sheet before which the new sheet is added. You cannot specify |
| string | after | A string value that specifies the sheet after which the new sheet is added. You cannot specify |
| int | count | The number of sheets to be added. |
Inserts a chart directly onto the grid.
void Add(ISheet before = null, ISheet after = null, int count = 1)
Sub Add(Optional before As ISheet = Nothing, Optional after As ISheet = Nothing, Optional count As Integer = 1)
| Type | Name | Description |
|---|---|---|
| ISheet | before | An ISheet object that specifies the sheet before which the new sheet is added. You cannot specify |
| ISheet | after | An ISheet object that specifies the sheet after which the new sheet is added. You cannot specify |
| int | count | The number of sheets to be added. |
Inserts a chart directly onto the grid.
void Add(int before = -1, int after = -1, int count = 1)
Sub Add(Optional before As Integer = -1, Optional after As Integer = -1, Optional count As Integer = 1)
| Type | Name | Description |
|---|---|---|
| int | before | Index of the sheet before which the new sheet is added. You cannot specify |
| int | after | Index of the sheet after which the new sheet is added. You cannot specify |
| int | count | The number of sheets to be added. |