MindFusion.Charting Programmer's Guide

StringCollection.Remove Method

See Also
 





Removes the first occurrence of the specified label.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Remove (
    string value
)

Visual Basic  Copy Code

Public Sub Remove ( _
    value As String _
)

JavaScript  Copy Code

function Remove (value)

 Parameters

value

The label to remove.

 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