MindFusion.Charting Programmer's Guide

StringCollection.RemoveAt Method

See Also
 





Removes the label at the specified index.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public new void RemoveAt (
    int index
)

Visual Basic  Copy Code

Public Shadows Sub RemoveAt ( _
    index As Integer _
)

JavaScript  Copy Code

function RemoveAt (index)

 Parameters

index
The zero-based index, at which the label should be removed.

 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