This documentation is for the old version. Go to the latest Graphics Mill docs

Font.ClearType Property

Gets/sets value specifying if to use ClearType antialiasing for fonts (optimized for LCD monitors).

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Property ClearType As Boolean
C#
public bool ClearType { get; set; }

Property Value

Value specifying if to use ClearType during text rendering.

Remarks

The following situations do not support ClearType antialiasing:
  • Text rendered on a printer.
  • A display set for 256 colors or less.
  • Text rendered to a terminal server client.
  • The font is not a TrueType font or an OpenType font with TrueType outlines. For example, the following do not support ClearType antialiasing: Type 1 fonts, Postscript OpenType fonts without TrueType outlines, bitmap fonts, vector fonts, and device fonts.
  • The font has tuned embedded bitmaps, only for the font sizes that contain the embedded bitmaps. For example, this occurs commonly in East Asian fonts.

Default value is false.

See Also

Reference