ObjectListFieldCollection.Item[Int32] Property

Definition

The default indexer for the ObjectListFieldCollection class, allows the lookup of arbitrary capability values by index. Any of the properties can be accessed by name. However, the returned value will always be a string (or null if not defined), rather than a type-safe value. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property System::Web::UI::MobileControls::ObjectListField ^ default[int] { System::Web::UI::MobileControls::ObjectListField ^ get(int index); };
public System.Web.UI.MobileControls.ObjectListField this[int index] { get; }
member this.Item(int) : System.Web.UI.MobileControls.ObjectListField
Default Public ReadOnly Property Item(index As Integer) As ObjectListField

Parameters

index
Int32

The index of the item to retrieve.

Property Value

A string representing the value of the field at the specified index.

Implements

Applies to

See also