windowsforms-devexpress-dot-xtraeditors-dot-tileitem-efda83a4.md
Gets or sets whether the item is visible.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(true)]
[DXCategory("Behavior")]
public bool Visible { get; set; }
<DefaultValue(True)>
<DXCategory("Behavior")>
Public Property Visible As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the item is visible; otherwise, false.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Visible property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-tilecontrol-support-searchcontrol/CS/CustomTileControl.cs#L21
foreach (TileItem item in group.Items)
item.Visible = true;
}
winforms-tilecontrol-support-searchcontrol/VB/CustomTileControl.vb#L24
For Each item As TileItem In group.Items
item.Visible = True
Next item
See Also