MarkupProperty.IsConstructorArgument Property

Definition

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.

Applies to