| UIControlIsVisible Property |
Gets or sets a value indicating whether this control is visible.
This is a game object property.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public bool IsVisible { get; set; }
Public Property IsVisible As Boolean
Get
Set
public:
property bool IsVisible {
bool get ();
void set (bool value);
}
member IsVisible : bool with get, set
Property Value
Type:
Boolean if this control is visible; otherwise,
.
Remarks
This property can be set to
to hide the control and its visual
children. Invisible controls are not drawn, they do not take part in the layout process and
they do not handle input. See also
ActualIsVisible.
See Also