MindFusion.Charting Programmer's Guide

StringCollection.Insert Method

See Also
 





Inserts the specified label in the specified position.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Insert (
    int index,
    string value
)

Visual Basic  Copy Code

Public Sub Insert ( _
    index As Integer, _
    value As String _
)

JavaScript  Copy Code

function Insert (index, value)

 Parameters

index
The zero-based index at which value should be inserted.
value
The label to insert.

 Remarks

The collection's count is increased with 1. The items, which followed the inserted item, are moved backwards with one place. Their indexes are also updated.

 See Also