Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Creates a new Chartsheet at a specified position in the workbook.

Signature
C#
C#
 public Chartsheet CreateChartsheet(ChartType type, System.String name, int position)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function CreateChartsheet(ByVal type As ChartType, ByVal name As String, ByVal position As Integer) As Chartsheet
{signature}
{parameters}
{param:type}The type of chart to create. Specify both a chart type and sub\-type, for example, [
Parameters
Param
type
type

The type of chart to create. Specify both a chart type and sub-type, for example, ChartType.Bar.Clustered

|ChartType.Bar#Clustered].{param} {param:name}Name for the new chartsheet.{param} {param:position}The 0\-based position at which to insert the chartsheet. If {{position}} is greater than [Worksheets.Count|Worksheets.Count], an exception will be thrown.{param} {returns}A [Chartsheet|Chartsheet] object representing the chartsheet created.{returns} {example}{code:csharp|title=C#}

.

Param
name
name

Name for the new chartsheet.

Param
position
position

The 0-based position at which to insert the chartsheet. If position is greater than Worksheets.Count, an exception will be thrown.

Returns

A Chartsheet object representing the chartsheet created.

Example
Code Block
csharp
csharp
titleC#

ChartSheet cs =
     sheets.CreateWorksheet(ChartType.Bar.Clustered, "NewSheet", 0);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim cs As ChartSheet = _
     sheets.CreateWorksheet(ChartType.Bar.Clustered, "NewSheet", 0)
{code} {example}