ControlElementCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a property, attribute, or child element of this configuration element. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
Overloads
Item[Int32] |
Gets or sets a property, attribute, or child element of this configuration element. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
Item[String] |
Gets or sets a property, attribute, or child element of this configuration element. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
Item[Int32]
Gets or sets a property, attribute, or child element of this configuration element. 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::ControlElement ^ default[int] { System::Web::UI::MobileControls::ControlElement ^ get(int index); void set(int index, System::Web::UI::MobileControls::ControlElement ^ value); };
public System.Web.UI.MobileControls.ControlElement this[int index] { get; set; }
member this.Item(int) : System.Web.UI.MobileControls.ControlElement with get, set
Default Public Property Item(index As Integer) As ControlElement
Parameters
- index
- Int32
The index value of the item in the collection.
Property Value
The element at the specified index.
Applies to
Item[String]
Gets or sets a property, attribute, or child element of this configuration element. 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::ControlElement ^ default[System::String ^] { System::Web::UI::MobileControls::ControlElement ^ get(System::String ^ name); };
public System.Web.UI.MobileControls.ControlElement this[string name] { get; }
member this.Item(string) : System.Web.UI.MobileControls.ControlElement
Default Public ReadOnly Property Item(name As String) As ControlElement
Parameters
- name
- String
The name of the configuration element to access.
Property Value
The specified property, attribute, or child element.