TcxLookAndFeel.AssignedValues Property
Specifies what look & feel settings affect an individual DevExpress control.
#Declaration
Delphi
property AssignedValues: TcxLookAndFeelValues read; write;
#Property Value
Type | Description |
---|---|
Tcx |
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 |
---|---|---|
lfv |
Kind | A deprecated look & feel style is defined at the control level. |
lfv |
Native |
The operating system-dependent look & feel style is enabled or disabled at the control level. |
lfv |
Render |
A different render mode is set at the control level. This flag has no effect on controls that support only the GDI render mode. |
lfv |
Scrollbar |
Touch-friendly scrollbars are enabled or disabled at the control level. |
lfv |
Scroll |
A specific scrollbar type is selected at the control level. This flag has no effect on controls that support only classic scrollbars. |
lfv |
Skin |
A skin is applied at the control level. |
#Default Value
The AssignedValues
property’s default value is []
.
See Also