MindFusion.Charting Programmer's Guide

ShapeCollection.Item Property

See Also
 





Gets or sets the Shape object, located at the specified position.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

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

Visual Basic  Copy Code

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

 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