C

MCU.Config.defaultFontQuality

Sets a default font quality for Text items.

Description

Determines the default font.quality for the Text and StaticText items. The default value is "VeryHigh".

Available values:

QmlProjectQML
"VeryLow"Font.QualityVeryLow
"VeryHigh"Font.QualityVeryHigh

See Text Rendering and Fonts for font engine-specific details.

Note: The property affects both the Spark Monotype and Static font engines.

Usage

This property is accepted in the main application .qmlproject file. It takes a string, and the default value is "VeryHigh".

The available options are:

  • "VeryLow"
  • "VeryHigh"

Code example:

MCU.Config {
    defaultFontQuality: "VeryLow"
}

Since

This property was introduced in QmlProject API 1.3 .

See also QUL_DEFAULT_FONT_QUALITY.

Available under certain Qt licenses.
Find out more.