Struct LayoutUpdate
Pass selection and per-pass immutable constraints for one view update.
public readonly struct LayoutUpdate
- Inherited Members
Constructors
LayoutUpdate(LayoutPass, MeasureConstraints, ArrangeConstraints)
Initializes a layout update.
public LayoutUpdate(LayoutPass pass, MeasureConstraints measure, ArrangeConstraints arrange)
Parameters
passLayoutPassmeasureMeasureConstraintsarrangeArrangeConstraints
Properties
Arrange
Arrangement constraints.
public ArrangeConstraints Arrange { get; }
Property Value
IsAnimate
Whether animation is requested.
public bool IsAnimate { get; }
Property Value
IsArrange
Whether arrangement is requested.
public bool IsArrange { get; }
Property Value
IsMeasure
Whether measurement is requested.
public bool IsMeasure { get; }
Property Value
IsRender
Whether rendering is requested.
public bool IsRender { get; }
Property Value
Measure
Measurement constraints.
public MeasureConstraints Measure { get; }
Property Value
Pass
Requested passes.
public LayoutPass Pass { get; }