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

TcxCustomFontNameComboBoxProperties.ShowFontTypeIcon Property

Specifies the location of font icons.

#Declaration

Delphi
property ShowFontTypeIcon: TcxShowFontIconTypes read; write; default [ftiShowInCombo, ftiShowInList];

#Property Value

Type
TcxShowFontIconTypes

#Remarks

The cxFontNameComboBox supports various font types: True Type, raster, system, symbol and device-dependant fonts. Each font type has a corresponding icon. The ShowFontTypeIcon specifies the location of the font type icons. These icons can be displayed in dropdown list and/or the selection area.

Property Value

Meaning

Effect

ftiShowInCombo = True

ftiShowInList = True

The icons are displayed in the text area and the drop-down list.

ftiShowInCombo = False

ftiShowInList = True

The icons are displayed in the drop-down list only.

ftiShowInCombo = True

ftiShowInList = False

The icons are displayed within the text area only.

ftiShowInCombo = False

ftiShowInList = False

No icons are displayed.

The default value of the ShowFontTypeIcon property is [ftiShowInCombo,ftiShowInList].

See Also