ContentElement.IsEnabledCore 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 becomes the return value of IsEnabled in derived classes.
protected:
virtual property bool IsEnabledCore { bool get(); };
protected virtual bool IsEnabledCore { get; }
member this.IsEnabledCore : bool
Protected Overridable ReadOnly Property IsEnabledCore As Boolean
Property Value
true
if the element is enabled; otherwise, false
.
Remarks
Notes to inheritors
The default implementation of this property caches the value and also calculates whether the parent element of this element is enabled. If the parent is not enabled, the child element cannot be effectively enabled in practical user interface. If you choose to override this implementation, make certain that you call the base implementation to preserve this behavior.