Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TileItem.BorderVisibility Property

Gets or sets whether the current TileItem‘s border is visible.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Property Value

Type Default Description
DevExpress.XtraEditors.TileItemBorderVisibility Auto

A value that specifies whether the TileItem’s border is visible.

#Remarks

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