TdxListViewFonts.AssignedValues Property
Specifies which font settings affect List View elements.
Declaration
property AssignedValues: TdxListViewFontValues read; write; default [];
Property Value
Type | Description |
---|---|
TdxListViewFontValues | A set of flags that correspond to custom font settings for different List View elements. |
Remarks
The following table lists all font setting flags:
Flag | Description |
---|---|
ColumnHeader | If this flag is set, the control uses a font specified in the control’s Fonts.ColumnHeader property to display column headers. |
GroupFooter | If this flag is set, the control uses a font specified in the control’s Fonts.GroupFooter property to display group footers. |
GroupHeader | If this flag is set, the control uses a font specified in the control’s Fonts.GroupHeader property to display group headers. |
GroupSubtitle | If this flag is set, the control uses a font specified in the control’s Fonts.GroupSubtitle property to display group subtitles. |
Item | If this flag is set, the control uses a font specified in the control’s Fonts.Item property to display item captions. |
SubItem | If this flag is set, the control uses a font specified in the control’s Fonts.SubItem property to display subitems. |
If a flag is not set, the List View shows the corresponding UI elements with the default font (that is, the control uses font settings defined in a parent form or panel).
When you change List View Fonts properties listed above, the control automatically sets the corresponding flags. The AssignedValues property setter restores the default value for the corresponding properties when you remove a flag.
Refer to the TdxListViewFontValue type description for information on available options.
See Also