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

Parameters

index

See Also