TdxTileControlOptionsBehavior.ItemHotTrackMode Property
Controls if end-users can hot-track tile items within a tile control using the mouse.
Declaration
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