dotnetCHARTING Send comments on this topic.
Item Property
See Also 
dotnetCHARTING Namespace > ChartAreaCollection 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 ChartArea
Visual Basic (Usage)Copy Code
Dim instance As ChartAreaCollection
Dim index As Integer
Dim value As ChartArea
 
instance.Item(index) = value
 
value = instance.Item(index)
C# 
public ChartArea this[ 
   int index
]; {get; set;}
C++/CLI 
public:
property ChartArea^ default [int] {
   ChartArea^ get(int index);
   void set (int indexChartArea^ value);
}

Parameters

index

See Also