Skip to main content

TileControl.ItemBorderVisibility Property

Gets or sets whether borders of all tile items are visible.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(TileItemBorderVisibility.Auto)]
[DXCategory("Appearance")]
public TileItemBorderVisibility ItemBorderVisibility { get; set; }

Property Value

Type Default Description
DevExpress.XtraEditors.TileItemBorderVisibility Auto

A value that specifies whether tile item borders are visible.

Remarks

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