WebPartManager.EnableTheming 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 a value indicating that the use of themes is enabled on a Web page.
public:
virtual property bool EnableTheming { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public override bool EnableTheming { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.EnableTheming : bool with get, set
Public Overrides Property EnableTheming As Boolean
Property Value
A Boolean value that indicates whether themes are enabled. true
in all cases.
- Attributes
Exceptions
An attempt was made to set the property value.
Remarks
The WebPartManager control overrides the base EnableTheming property to ensure that it always returns a value of true
. This is done because the Web Parts control set requires the use of themes to render the Web Parts controls that are child controls of the WebPartManager control and that form the user interface (UI) of a Web page. For example, themes are used to render the various zones, and the controls that reside in the zones, including the various types of part controls (controls that inherit from the Part class), user controls, ASP.NET server controls, and custom server controls.
Although the overridden EnableTheming property is implemented as a read/write property in accordance with its base property, you cannot set the property, because by design it must always return a value of true
. If you attempt to set the property, a NotSupportedException exception is thrown.