MindFusion.Charting Programmer's Guide

StringCollection.Item Property

See Also
 





Gets or sets the element at the specified index.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public string Item [
    int index
] { get; set; }

Visual Basic  Copy Code

Public Property Item ( _
    index As Integer _
) As String

 Parameters

index
The zero-based index of the element to get or set.

 Property Value

The element at the specified index.

 Remarks

In C#, this property is the indexer of the collection.

 See Also