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

TcxLookAndFeelValue Enum

Enumerates look & feel setting flags.

Declaration

TcxLookAndFeelValue = (
    lfvKind,
    lfvNativeStyle,
    lfvSkinName,
    lfvScrollbarMode,
    lfvRenderMode,
    lfvScrollMode
);

Members

Name
lfvKind
lfvNativeStyle
lfvSkinName
lfvScrollbarMode
lfvRenderMode
lfvScrollMode

Remarks

Options include:

Value

Description

lfvKind

This flag reflects a control’s LookAndFeel.Kind property value change. The control uses the parent kind setting if this flag is not set.

Note that the lfvKind flag has the lowest priority compared to the lfvNativeStyle and lfvSkinName flags.

lfvNativeStyle

This flag reflects a control’s LookAndFeel.NativeStyle property value change. The control uses the parent native style setting if this flag is not set.

Note that the lfvNativeStyle flag has priority over the lfvKind and lfvSkinName flags.

lfvSkinName

This flag reflects a control’s LookAndFeel.SkinName property value change. The control uses a skin name defined at the parent level if this flag is not set.

Note that the lfvSkinName flag has lower priority than lfvNativeStyle.

lfvScrollbarMode

The flag reflects a control’s LookAndFeel.ScrollbarMode property value change. The control uses the parent level setting if this flag is not set.

Note

If this flag is set and the LookAndFeel.ScrollbarMode property is set to sbmDefault, the control uses the cxDefaultIsTouchScrollUIModeEnabled global constant to determine the active scrollbar mode.

lfvRenderMode

The flag reflects a control’s LookAndFeel.RenderMode property value change. The control uses the parent level setting if this flag is not set.

Note

If this flag is set and the LookAndFeel.RenderMode property is set to rmDefault, the control uses the cxDefaultLookAndFeelRenderMode global constant to determine the active scrollbar mode.

lfvScrollMode

This flag reflects a control’s LookAndFeel.ScrollMode property value change. The control uses the parent level scroll mode setting if this flag is not set.

Note

If this flag is set and the LookAndFeel.ScrollMode property is set to scmDefault, the control uses the cxDefaultLookAndFeelScrollMode global constant to determine the active scroll mode.

The TcxLookAndFeelValues type references the TcxLookAndFeelValue type.

See Also