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

TdxTouchScrollUIMode Enum

Enumerates Touch-friendly scrollbar mode settings that can be applied to DevExpress controls (TcxControl and TdxVCLControl descendant instances).

Declaration

TdxTouchScrollUIMode = (
    tsmDefault,
    tsmEnabled,
    tsmDisabled
);

Members

Name
tsmDefault
tsmEnabled
tsmDisabled

Remarks

Options include:

Value Description
tsmDefault The control’s Touch-friendly scrollbar mode is determined by the cxDefaultIsTouchScrollUIModeEnabled global constant value or the Look & Feel controller‘s TouchScrollUIMode property value (if this component is present on an application form).
tsmEnabled The Touch-friendly scrollbar mode is enabled for a control even if the cxDefaultIsTouchScrollUIModeEnabled global constant is False or the Look & Feel controller’s TouchScrollUIMode property is set to False.
tsmDisabled A control displays classic scrollbars regardless of the global Touch-friendly scrollbar mode settings.

The deprecated TcxLookAndFeel.TouchScrollUIMode property references the TdxTouchScrollUIMode type.

See Also