IManagementHost.UserInterfaceTechnologyType 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 type that implements the IModulePage interface and is used as the base class for a page in the user interface.
public:
property Type ^ UserInterfaceTechnologyType { Type ^ get(); };
public Type UserInterfaceTechnologyType { get; }
member this.UserInterfaceTechnologyType : Type
Public ReadOnly Property UserInterfaceTechnologyType As Type
Property Value
The type that implements the IModulePage interface and is used as the base class for a page in the user interface.
Examples
The following example shows an implementation of the UserInterfaceTechnologyType property.
Type IManagementHost.UserInterfaceTechnologyType {
get {
return typeof(Control);
}
}