Gets or sets a value indicating whether this instance is visible.

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

Syntax

C#
public bool IsVisible { get; set; }
Visual Basic
Public Property IsVisible As Boolean
	Get
	Set
Visual C++
public:
property bool IsVisible {
	bool get ();
	void set (bool value);
}

Field Value

trueTruetruetrue (True in Visual Basic) if this instance is visible; otherwise, falseFalsefalsefalse (False in Visual Basic). The default value is trueTruetruetrue (True in Visual Basic).

Remarks

If IsVisible is false, OnUpdate(TimeSpan) and OnRender(RenderContext) are not called.

See Also