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

TcxLookAndFeel.AssignedValues Property

Specifies what look & feel settings affect an individual DevExpress control.

#Declaration

Delphi
property AssignedValues: TcxLookAndFeelValues read; write;

#Property Value

Type Description
TcxLookAndFeelValues

The set of flags that correspond to look & feel settings modified at the current level.

#Remarks

You can use the AssignedValues property to track look & feel setting changes at the current hierarchy level and reset individual font settings. If a flag is present in the AssignedValues property value, the corresponding font setting is in effect at the control level. Otherwise, the control inherits the corresponding look & feel setting from the global level.

#Look & Feel Setting Modification Flags

The AssignedValues property value can include any number of the following flags in any combination:

Value Assigned Property Description
lfvKind Kind A deprecated look & feel style is defined at the control level.
lfvNativeStyle NativeStyle The operating system-dependent look & feel style is enabled or disabled at the control level.
lfvRenderMode RenderMode A different render mode is set at the control level. This flag has no effect on controls that support only the GDI render mode.
lfvScrollbarMode ScrollbarMode Touch-friendly scrollbars are enabled or disabled at the control level.
lfvScrollMode ScrollMode A specific scrollbar type is selected at the control level. This flag has no effect on controls that support only classic scrollbars.
lfvSkinName SkinName A skin is applied at the control level.

#Default Value

The AssignedValues property’s default value is [].

See Also