Back to Devexpress

TileItem.Visible Property

windowsforms-devexpress-dot-xtraeditors-dot-tileitem-efda83a4.md

latest2.3 KB
Original Source

TileItem.Visible Property

Gets or sets whether the item is visible.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(true)]
[DXCategory("Behavior")]
public bool Visible { get; set; }
vb
<DefaultValue(True)>
<DXCategory("Behavior")>
Public Property Visible As Boolean

Property Value

TypeDefaultDescription
Booleantrue

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

csharp
foreach (TileItem item in group.Items)
        item.Visible = true;
}

winforms-tilecontrol-support-searchcontrol/VB/CustomTileControl.vb#L24

vb
For Each item As TileItem In group.Items
    item.Visible = True
Next item

See Also

Enabled

TileItem Class

TileItem Members

DevExpress.XtraEditors Namespace