| UIPropertyOptions Enumeration |
Defines how the property influences layout and rendering.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax [FlagsAttribute]
public enum UIPropertyOptions
<FlagsAttribute>
Public Enumeration UIPropertyOptions
[FlagsAttribute]
public enum class UIPropertyOptions
[<FlagsAttribute>]
type UIPropertyOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
No options are specified; the property does not influence the UI.
|
| AffectsMeasure | 1 |
The measure pass of layout compositions is affected by value changes to this property.
|
| AffectsArrange | 2 |
The arrange pass of layout compositions is affected by value changes to this property.
|
| AffectsRender | 4 |
Some aspect of rendering or layout composition (other than measure or arrange) is affected
by value changes to this property.
|
See Also