[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.Charts.ICharts.Item

this Property

this[int]

Gets a single chart from the collection.

Declaration
IChart this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As IChart
Parameters
Type Name Description
int index

The index number of the chart.

Property Value
Type Description
IChart

An IChart object represents the chart at the specified position.

this[string]

Gets a single chart from the collection.

Declaration
IChart this[string name] { get; }
ReadOnly Default Property Item(name As String) As IChart
Parameters
Type Name Description
string name
Property Value
Type Description
IChart

An IChart object represents the specified chart.

this[int[]]

Gets the specified IChart objects by the zero based indexes.

Declaration
ICharts this[params int[] indexes] { get; }
ReadOnly Default Property Item(ParamArray indexes As Integer()) As ICharts
Parameters
Type Name Description
int[] indexes

An array of integer values indicates the chart indexes.

Property Value
Type Description
ICharts

The IChart objects at the specified indexes.

this[string[]]

Gets the specified IChart objects by the chart names.

Declaration
ICharts this[params string[] names] { get; }
ReadOnly Default Property Item(ParamArray names As String()) As ICharts
Parameters
Type Name Description
string[] names

An array of string values indicates the chart names.

Property Value
Type Description
ICharts

The IChart objects which has the specified names.