MindFusion.UI for WebForms Programmer's Guide

StateCollection(T).Item Property

See Also
 





Gets or sets the element at the specified index.

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

 Syntax

C#  Copy Code

public T Item [
    int index
] { get; set; }

Visual Basic  Copy Code

Public Property Item( _
    index As Integer _
) As T

 Parameters

index

Type: Int32
The zero-based index of the element to get or set.

 Property Value

Type: T
The element at the specified index.

 See Also