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

TdxTileControlOptionsBehavior.ItemHotTrackMode Property

Controls if end-users can hot-track tile items within a tile control using the mouse.

#Declaration

Delphi
property ItemHotTrackMode: TdxTileControlItemHotTrackMode read; write;

#Property Value

Type Description
TdxTileControlItemHotTrackMode

Enumerates available hot-track modes.

#Remarks

Options include:

Value Description
tcihtmFrame A hot-tracked tile item is emphasized with a frame painted around it. Use a tile control’s Style.FocusedColor property to specify the frame color.
tcihtmOuterFrame A hot-tracked tile item is emphasized with an outer frame (a frame that is painted with a 1-pixel offset from the item). Use the ItemOuterFrameColor property to specify the frame color.
tcihtmHighlight A hot-tracked tile item is highlighted using the color specified via the ItemHotTrackHighlightColor property.
tcihtmNone Item hot-tracking is disabled.

Hot-tracking a tile item removes the focus indication from the currently focused item if the HideFocusOnItemHotTrack property is set to True.

The default values of the ItemHotTrackMode property for the tile and tile bar controls are tcihtmFrame and tcihtmHighlight, respectively.

See Also