windowsforms-devexpress-dot-xtraeditors-dot-tileitem-9ee1184e.md
Gets or sets whether the current TileItem‘s border is visible.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(TileItemBorderVisibility.Auto)]
[DXCategory("Appearance")]
public TileItemBorderVisibility BorderVisibility { get; set; }
<DefaultValue(TileItemBorderVisibility.Auto)>
<DXCategory("Appearance")>
Public Property BorderVisibility As TileItemBorderVisibility
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraEditors.TileItemBorderVisibility | Auto |
A value that specifies whether the TileItem’s border is visible.
|
By default, a tile item’s border is painted depending on the TileControl.ItemBorderVisibility property’s value of the parent TileControl. You can override this setting for a specific item using the BorderVisibility property. To always display the tile item’s border, set its BorderVisibility property to Always. If you set this property to Never , the tile’s border is not visible.
If the tile’s BorderVisibility and its parent’s TileControl.ItemBorderVisibility properties are set to Auto , the tile’s border is painted provided that its TileItem.BackgroundImage property is not set.
See Also