TFontDialog has mulltiple Options derived from TFontDialogOptions, which allow to customize its look and content.
I want to it to show only monospace fonts, so my options look like this:
fontDialog.Options := [fdAnsiOnly, fdTrueTypeOnly, fdFixedPitchOnly, fdForceFontExists, fdScalableOnly,
fdNoSimulations, fdWysiwyg fdNoVectorFonts, fdNoOEMFonts];
However, the dialog window still shows vertically-oriented fonts starting with @, which are actually not monospace horizonally.
On Windows it is e.g. @FangSong, @KaiTi, @NSimSun etc.
How to filter them out? Thanks.