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

TdxFontPitch Enum

Enumerates font pitch options.

#Declaration

Delphi
TdxFontPitch = (
    Default,
    Fixed,
    Variable
);

#Members

Name Description
Default

The font pitch is defined by the current font typeface.

Fixed

All font glyphs have the same width depending on the selected font.

Variable

Font glyphs have different widths depending on the selected font.

#Remarks

The TdxFontOptions.Pitch property references the TdxFontPitch type.

Note

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

See Also