UIElement.IsMeasureValid 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 indicating whether the current size returned by layout measure is valid.
public:
property bool IsMeasureValid { bool get(); };
public bool IsMeasureValid { get; }
member this.IsMeasureValid : bool
Public ReadOnly Property IsMeasureValid As Boolean
Property Value
true
if the measure pass of layout returned a valid and current value; otherwise, false
.
Remarks
You can force measurement and arrangement to be invalidated by calling InvalidateMeasure on this element (or any parent element up the visual tree). This designates the layout for recomposition asynchronously, occurring at a time determined by the layout system. Alternatively, you could make an immediate call to UpdateLayout. However, you should only call UpdateLayout if it is likely that no further invalidations are pending (a large number of unnecessarily forced updates will have performance consequences).
If IsMeasureValid is false
, IsArrangeValid must also be false
(by the enforced logic of the layout process, arrangement cannot be valid without measurement first being valid).