Skip to main content
All docs
V25.1
  • TdxFontPitch Enum

    Enumerates font pitch options.

    Declaration

    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