MobileControl.Form 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.
Provides access to the containing form. 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::Form ^ Form { System::Web::UI::MobileControls::Form ^ get(); };
[System.ComponentModel.Bindable(false)]
[System.ComponentModel.Browsable(false)]
public System.Web.UI.MobileControls.Form Form { get; }
[<System.ComponentModel.Bindable(false)>]
[<System.ComponentModel.Browsable(false)>]
member this.Form : System.Web.UI.MobileControls.Form
Public ReadOnly Property Form As Form
Property Value
The form that contains this control.
- Attributes
Exceptions
the control is not in a form as required. The only mobile controls not required to be in a Form are a Form and a StyleSheet.
Examples
The following example demonstrates how to use the Form property to determine whether the active form is a particular form in the ASP.NET mobile Web application. This example is part of a larger example for the EnsureTemplatedUI property.