MobileListItem Constructors

Definition

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

Overloads

MobileListItem()

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

MobileListItem(String)

Initializes a new instance of the MobileListItem class using the specified Text property. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

MobileListItem(MobileListItemType)

Initializes a new instance of the MobileListItem class with the specified Type. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

MobileListItem(String, String)

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

MobileListItem(Object, String, String)

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

MobileListItem()

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 MobileListItem();
public MobileListItem ();
Public Sub New ()

Remarks

This constructor builds a MobileListItem object with the missing elements set to null. The parameterless constructor initializes all properties to null.

See also

Applies to

MobileListItem(String)

Initializes a new instance of the MobileListItem class using the specified Text property. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 MobileListItem(System::String ^ text);
public MobileListItem (string text);
new System.Web.UI.MobileControls.MobileListItem : string -> System.Web.UI.MobileControls.MobileListItem
Public Sub New (text As String)

Parameters

text
String

Initializes Text.

Remarks

This constructor builds a MobileListItem object with the missing elements set to null. The object is initialized with the Text property set to the value of the text parameter.

See also

Applies to

MobileListItem(MobileListItemType)

Initializes a new instance of the MobileListItem class with the specified Type. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 MobileListItem(System::Web::UI::MobileControls::MobileListItemType itemType);
public MobileListItem (System.Web.UI.MobileControls.MobileListItemType itemType);
new System.Web.UI.MobileControls.MobileListItem : System.Web.UI.MobileControls.MobileListItemType -> System.Web.UI.MobileControls.MobileListItem
Public Sub New (itemType As MobileListItemType)

Parameters

itemType
MobileListItemType

Initializes the specified item with this item type.

Remarks

This constructor builds a MobileListItem object with the missing elements set to null. The object is initialized with the itemType parameter.

See also

Applies to

MobileListItem(String, String)

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 MobileListItem(System::String ^ text, System::String ^ value);
public MobileListItem (string text, string value);
new System.Web.UI.MobileControls.MobileListItem : string * string -> System.Web.UI.MobileControls.MobileListItem
Public Sub New (text As String, value As String)

Parameters

text
String

Initializes Text.

value
String

Initializes Value.

Remarks

This constructor builds a MobileListItem object with the missing elements set to null. The object is initialized with the Text and Value properties set to the values of the corresponding text and value parameters.

See also

Applies to

MobileListItem(Object, String, String)

Initializes a new instance of the MobileListItem class. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 MobileListItem(System::Object ^ dataItem, System::String ^ text, System::String ^ value);
public MobileListItem (object dataItem, string text, string value);
new System.Web.UI.MobileControls.MobileListItem : obj * string * string -> System.Web.UI.MobileControls.MobileListItem
Public Sub New (dataItem As Object, text As String, value As String)

Parameters

dataItem
Object

Initializes DataItem.

text
String

Initializes Text.

value
String

Initializes Value.

Remarks

This constructor builds a MobileListItem object with the missing elements set to null. The object is initialized with the DataItem, Text, and Value properties set to the values of the corresponding dataItem, text, and value parameters.

See also

Applies to