WebPartPersonalization.IsEnabled 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 that indicates whether personalization is enabled and has successfully loaded personalization data for this instance of the WebPartPersonalization class.
public:
property bool IsEnabled { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsEnabled { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsEnabled : bool
Public ReadOnly Property IsEnabled As Boolean
Property Value
true
if personalization is enabled for the current WebPartPersonalization instance and personalization data has successfully loaded; otherwise, false
.
- Attributes
Remarks
Prior to loading personalization data, this property will always return false
. For example, this property will return false
during the PreInit
phase. After the associated WebPartManager's OnInit method has successfully completed (during which the Load method is called), this property will then return true
.
This property is a publicly accessible alias for the protected IsInitialized property.