MindFusion.UI for WebForms Programmer's Guide

StateCollection(T).Insert Method

See Also
 





Inserts an item into the StateCollection collection at the specified index.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public virtual void Insert (
    int index,
    T item
)

Visual Basic  Copy Code

Public Overridable Sub Insert( _
    index As Integer, _
    item As T _
)

 Parameters

index

Type: Int32
The index to insert at.

item

Type: T
The item to insert.

 See Also