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



index
Gets the object at a specified index.

Syntax

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

Parameters

index

See Also