TdxListViewFontValue Enum
Enumerates font setting flags for the List View.
#Declaration
TdxListViewFontValue = (
ColumnHeader,
GroupHeader,
GroupFooter,
GroupSubtitle,
Item,
SubItem
);
#Members
Name | Description |
---|---|
Column
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
Group
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
Group
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
Group
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
Item
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
Sub
|
If this flag is set, the control uses a font specified in the control’s Fonts. |
#Remarks
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 Font properties, the control automatically sets the corresponding flags. The control’s Fonts.AssignedValues property setter restores the default value for the corresponding properties when you remove its flag.
The TdxListViewFontValues type references the TdxListViewFontValue type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Item
value in code.