Click or drag to resize

ControlVisible Property

Gets or sets a value indicating whether this Control is visible to the user.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
[DefaultValueAttribute(true)]
public virtual bool Visible { get; set; }

Property Value

Type: Boolean
true if visible; otherwise, false.
Remarks
When the visibility of a control is set to false, it will still occupy space in the layout, but not be shown. The only exception is for controls like the Splitter, which will hide a pane if the visibility of one of the panels is changed.
See Also