windowsforms-devexpress-dot-xtraeditors-dot-tilecontrol-a36b24ba.md
Gets or sets whether borders of all tile items are visible.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(TileItemBorderVisibility.Auto)]
[DXCategory("Appearance")]
public TileItemBorderVisibility ItemBorderVisibility { get; set; }
<DefaultValue(TileItemBorderVisibility.Auto)>
<DXCategory("Appearance")>
Public Property ItemBorderVisibility As TileItemBorderVisibility
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraEditors.TileItemBorderVisibility | Auto |
A value that specifies whether tile item borders are visible.
|
If the ItemBorderVisibility property is set to Never , borders of all tile items are not painted. To always draw tile borders, set this property to Always. In the case of the Auto value, a specific tile item’s border is visible provided that its TileItem.BackgroundImage property is not set.
To override this behavior for an individual item, use the item’s TileItem.BorderVisibility property.
See Also