WebPartPersonalization.Enabled 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.
Returns a value indicating whether personalization is requested to be enabled for the associated WebPartManager control.
public:
virtual property bool Enabled { bool get(); void set(bool value); };
public virtual bool Enabled { get; set; }
member this.Enabled : bool with get, set
Public Overridable Property Enabled As Boolean
Property Value
true
if personalization is enabled; otherwise, false
.
Exceptions
An attempt was made to set this property value after the associated WebPartManager control's OnInit(EventArgs) method had completed.
Remarks
This property indicates whether personalization is requested to be enabled for the parent WebPartManager control. Note that this is a subtle but important distinction from the intent of IsEnabled and IsInitialized.
This property can only be set prior to the completion of the WebPartManager control's OnInit method. In practice, this means that the Enabled property must be set in the page markup on the WebPartManager element if personalization should be disabled. Alternatively, this property can be set during the PreInit
phase of the WebPartManager control.