ValueSource.IsCoerced Property

Definition

Gets a value that declares whether this value resulted from a CoerceValueCallback implementation applied to a dependency property.

public bool IsCoerced { get; }

Property Value

true if the value resulted from a CoerceValueCallback implementation applied to a dependency property; otherwise, false.

Remarks

If coercion is acting on a property value, the property retains a desired value, and the property value will attempt to reach that desired value if the constraints of the specific coercion are changed or lifted. A coerced property that is not at its desired value will report that IsCoerced is true.

Coercion acts at higher precedence than the base value, and is not strictly speaking a participant in how the base value is set. Therefore the state of being coerced is reported by this property, rather than by a value of the BaseValueSource enumeration. For more information about coercion, base values, and precedence, see Dependency Property Value Precedence.

Applies to

제품 버전
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also