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

TileViewItemOptions.HighlightFocusedTileStyle Property

Gets or sets whether the focused tile is highlighted using a border, background, both or is not highlighted.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(HighlightFocusedTileStyle.Default)]
public HighlightFocusedTileStyle HighlightFocusedTileStyle { get; set; }

Property Value

Type Default Description
DevExpress.XtraGrid.Views.Tile.HighlightFocusedTileStyle **Default**

A DevExpress.XtraGrid.Views.Tile.HighlightFocusedTileStyle enumeration value specifying whether the focused tile is highlighted using a border, background, both or is not highlighted.

Property Paths

You can access this nested property as listed below:

Object Type Path to HighlightFocusedTileStyle
TileView
.OptionsTiles.HighlightFocusedTileStyle

Remarks

The DevExpress.XtraGrid.Views.Tile.HighlightFocusedTileStyle enumeration provides the following values specifying how the focused tile is highlighted:

  • Default—the same as Border;
  • Border—using a border,

    TileViewItemOptions_HighlightFocusedTileStyle_Border

  • BorderAndContent—using a border and background,

    TileViewItemOptions_HighlightFocusedTileStyle_BorderAndContent

  • Content—using the background,

    TileViewItemOptions_HighlightFocusedTileStyle_Content

  • None—the focused tile is not highlighted.
See Also