Skip to main content

TdxListViewFontValue Enum

Enumerates font setting flags for the List View.

Declaration

TdxListViewFontValue = (
    ColumnHeader,
    GroupHeader,
    GroupFooter,
    GroupSubtitle,
    Item,
    SubItem
);

Members

Name Description
ColumnHeader

If this flag is set, the control uses a font specified in the control’s Fonts.ColumnHeader property to display column headers.

GroupHeader

If this flag is set, the control uses a font specified in the control’s Fonts.GroupHeader property to display group headers.

GroupFooter

If this flag is set, the control uses a font specified in the control’s Fonts.GroupFooter property to display group footers.

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.

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

TdxListViewFontValue 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 TdxListViewFontValue.Item (in Delphi) or TdxListViewFontValue::Item (in C++Builder) to refer to the Item value in code.

See Also