[]
Gets a single chart from the collection.
IChart this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As IChart
Type | Name | Description |
---|---|---|
int | index | The index number of the chart. |
Type | Description |
---|---|
IChart | An IChart object represents the chart at the specified position. |
Gets a single chart from the collection.
IChart this[string name] { get; }
ReadOnly Default Property Item(name As String) As IChart
Type | Name | Description |
---|---|---|
string | name |
Type | Description |
---|---|
IChart | An IChart object represents the specified chart. |
Gets the specified IChart objects by the zero based indexes.
ICharts this[params int[] indexes] { get; }
ReadOnly Default Property Item(ParamArray indexes As Integer()) As ICharts
Type | Name | Description |
---|---|---|
int[] | indexes | An array of integer values indicates the chart indexes. |
Type | Description |
---|---|
ICharts | The IChart objects at the specified indexes. |
Gets the specified IChart objects by the chart names.
ICharts this[params string[] names] { get; }
ReadOnly Default Property Item(ParamArray names As String()) As ICharts
Type | Name | Description |
---|---|---|
string[] | names | An array of string values indicates the chart names. |
Type | Description |
---|---|
ICharts | The IChart objects which has the specified names. |