dotnetCHARTING Send comments on this topic.
Item Property
See Also 
dotnetCHARTING Namespace > LegendEntryCollection Class : Item Property



index
Gets or sets the object at a specified index.

Syntax

Visual Basic (Declaration) 
Public Default Property Item( _
   ByVal index As Integer _
) As LegendEntry
Visual Basic (Usage)Copy Code
Dim instance As LegendEntryCollection
Dim index As Integer
Dim value As LegendEntry
 
instance.Item(index) = value
 
value = instance.Item(index)
C# 
public LegendEntry this[ 
   int index
]; {get; set;}
C++/CLI 
public:
property LegendEntry^ default [int] {
   LegendEntry^ get(int index);
   void set (int indexLegendEntry^ value);
}

Parameters

index

See Also