Defines how the property influences layout and rendering.

Namespace: DigitalRune.Game.UI.Controls
Assembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.1.0.0 (1.1.1.9392)

Syntax

C#
[FlagsAttribute]
public enum UIPropertyOptions
Visual Basic
<FlagsAttribute> _
Public Enumeration UIPropertyOptions
Visual C++
[FlagsAttribute]
public enum class UIPropertyOptions

Members

Member nameValueDescription
None0 No options are specified; the property does not influence the UI.
AffectsMeasure1 The measure pass of layout compositions is affected by value changes to this property.
AffectsArrange2 The arrange pass of layout compositions is affected by value changes to this property.
AffectsRender4 Some aspect of rendering or layout composition (other than measure or arrange) is affected by value changes to this property.

See Also