MindFusion.Charting Programmer's Guide

ShapeCollection.Remove Method

See Also
 





Removes the first occurrence of the specified Shape object from the collection.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Remove (
    Shape value
)

Visual Basic  Copy Code

Public Sub Remove ( _
    value As Shape _
)

JavaScript  Copy Code

function Remove (value)

 Parameters

value
The Shape object to remove from the ShapeCollection.

 Remarks

The collection's count is reduced with 1. The items, which followed the removed item, are moved forwards with one place. Their indexes are also updated.

 See Also