SetOutlinePreferred
SetOutlinePreferred Make TrueType fonts preferred over bitmapped fonts
#include <Fonts.h> Font Manager
void SetOutlinePreferred( outlinePreferred );
Boolean outlinePreferred ; TRUE = set preference to TrueType
You can use the SetOutlinePreferred procedure to cause the
Font Manager to prefer TrueType fonts over bitmapped fonts.
If a TrueType font and a bitmapped font are available for a font request, the
default behavior for the Font Manager is to choose the bitmapped font, in
order to maintain compatibility with documents that were created on computer
systems on which TrueType fonts were not available. The
SetOutlinePreferred procedure sets the preference of which type of font
to use in this situation.
If you want the Font Manager to choose outline fonts over any bitmapped
font counterparts, set the outlinePreferred parameter to TRUE. If only outline
fonts are available and outlinePreferred is set to FALSE, the outline font is
chosen regardless. If only bitmapped fonts are available and outlinePreferred
is set to TRUE, the bitmapped font is still chosen.
Returns: none