Click or drag to resize
DigitalRuneSkyNodeDrawOrder Property
Gets or sets the draw order.

Namespace: DigitalRune.Graphics.SceneGraph
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public int DrawOrder { get; set; }

Property Value

Type: Int32
The draw order. The value must be in the range [0, 65535]. The default value is 0.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionvalue is out of range.
Remarks
This property defines the order in which SkyNodes should be drawn. Nodes with a lower DrawOrder should be drawn first. Nodes with a higher DrawOrder should be drawn last. This means that usually nodes with a higher draw order cover nodes with a lower draw order.
See Also