Skip to main content
A newer version of this page is available. .

TileView.Appearance Property

Provides access to appearance settings used to paint this TileView.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DXCategory("Appearance")]
[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
[XtraSerializablePropertyId(1)]
public TileViewAppearances Appearance { get; }

Property Value

Type Description
DevExpress.XtraGrid.Views.Tile.TileViewAppearances

A DevExpress.XtraGrid.Views.Tile.TileViewAppearances object that contains appearance settings used to paint this TileView.

Remarks

The Appearance property allows you to modify the appearance of the TileView itself, as well as the appearance of group captions and tiles in all their visual states (normal, hovered, pressed and checked) in this view. Item appearance set through the Appearance property are shared by all tiles that belong to the view. You can handle the TileView.ItemCustomize event to get a specific tile and use its TileViewItem.AppearanceItem property to override these global appearance settings.

The figure below illustrates group captions with custom appearance settings applied.

TileView - Appearance Group Text

See Also