AttachedPropertyBrowsableForChildrenAttribute.IncludeDescendants 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 or sets a value that declares whether to use the deep mode for detection of parent elements on the attached property where this .NET Framework attribute is applied.
public:
property bool IncludeDescendants { bool get(); void set(bool value); };
public bool IncludeDescendants { get; set; }
member this.IncludeDescendants : bool with get, set
Public Property IncludeDescendants As Boolean
Property Value
true
if the attached property is browsable for all child elements in the logical tree of the parent element that owns the attached property. false
if the attached property is only browsable for immediate child elements of a parent element that owns the attached property. The default is false
.
Remarks
Most of the attached properties defined by WPF that apply AttachedPropertyBrowsableForChildrenAttribute do so with the default of IncludeDescendants as false
.
XAML Text Usage
Members of this type are not typically used in XAML.