XhtmlControlAdapter.SecondaryUIMode 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 the current secondary UI mode. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
protected:
virtual property int SecondaryUIMode { int get(); void set(int value); };
protected virtual int SecondaryUIMode { get; set; }
member this.SecondaryUIMode : int with get, set
Protected Overridable Property SecondaryUIMode As Integer
Property Value
A number indicating the current secondary UI mode, as determined by the form in which it is contained.
Remarks
Secondary UI is used by controls that show additional screens of a user interface. To use secondary UI, a control adapter performs the following steps:
During a postback event, the control adapter sets the SecondaryUIMode property in the XhtmlControlAdapter base class.
In rendering, the control checks the secondary UI mode, and renders the appropriate secondary UI.
In response to user interaction with the secondary UI, the control adapter might change the secondary UI mode to another value, or exit secondary UI mode by calling the ExitSecondaryUIMode method.
This property is primarily used by developers of custom adapters.