MarkupProperty.IsConstructorArgument 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.
When overridden in a derived class, determines whether this MarkupProperty represents a constructor argument.
public:
virtual property bool IsConstructorArgument { bool get(); };
public virtual bool IsConstructorArgument { get; }
member this.IsConstructorArgument : bool
Public Overridable ReadOnly Property IsConstructorArgument As Boolean
Property Value
true
if this property represents a constructor argument; otherwise, false
.
Remarks
The default behavior is return false
.
When IsConstructorArgument is true
, PropertyDescriptor and DependencyProperty are both null
.
XAML only uses IsConstructorArgument for representing the constructor arguments of instances of MarkupExtension. See Markup Extensions and WPF XAML.