Skip to main content

TileViewItemOptions.AllowItemHover Property

Gets or sets whether tiles support the hover visual state.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool AllowItemHover { get; set; }

Property Value

Type Default Description
Boolean false

true to enable the hover state; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowItemHover
TileView
.OptionsTiles .AllowItemHover

Remarks

Use the TileView.Appearance.ItemHovered property to customize the appearance of hovered tiles (items).

Note

The AllowItemHover setting should only be used with regular tile templates and not with HTML-CSS tile templates. Use the :hover CSS state selector to implement hover animation in an HTML-CSS tile template.

See Also