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

TileControl.AppearanceGroupHighlighting Property

Gets or sets an object that specifies appearance settings used to highlight TileGroups within the current TileControl.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Appearance")]
public GroupHighlightingProperties AppearanceGroupHighlighting { get; set; }

Property Value

Type Description
DevExpress.XtraEditors.GroupHighlightingProperties

A GroupHighlightingProperties object that contains appearance settings used to highlight TileGroups within the current TileControl.

Remarks

An end-user can re-arrange TileItems at runtime if the TileControl.AllowDrag property equals true. In this case, source and destination TileGroups can be highlighted depending on the TileControl.AllowGroupHighlighting property.

You can customize highlighting colors and their opacities via the AppearanceGroupHighlighting object:

  • the MaskColor property - specifies the origin group’s highlighting color (purple in the image below);
  • the HoveredMaskColor property - specifies the destination group’s highlighting color (orange in the image below);
  • the MaskOpacity and HoveredMaskOpacity properties - get or set the opacity for the MaskColor and HoveredMaskColor colors respectively.

TileControl AllowGroupHighlighting

See Also