Gets or sets the graphics screens.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.0.0.0 (1.0.0.9509)

Syntax

C#
GraphicsScreenCollection Screens { get; }
Visual Basic
ReadOnly Property Screens As GraphicsScreenCollection
	Get
Visual C++
property GraphicsScreenCollection^ Screens {
	GraphicsScreenCollection^ get ();
}

Field Value

The collection of GraphicsScreens.

Remarks

This GraphicsScreenCollection manages the graphics screens to be rendered. Graphics screens are rendered back (index 0) to front (index Count - 1).

The graphics service only renders fully or partially visible screens. The property Coverage of a GraphicsScreen indicates whether its content covers the entire screen and occludes screens with lower index, or whether it is partially transparent. The graphics service reads the Coverage property to determine which screens need to be rendered.

See Also