Click or drag to resize
TextQuality Enumeration
Specifies the quality at which text is rendered.

Namespace: Kettic.AspNet.Controls.ChartModel.Styles
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public enum TextQuality
Members
  Member nameValueDescription
SystemDefault0 Specifies that each character is drawn using its glyph bitmap, with the system default rendering hint. The text will be drawn using whatever font smoothing settings the user has selected for the system.
SingleBitPerPixel1 Specifies that each character is drawn using its glyph bitmap. Hinting is not used.
SingleBitPerPixelGridFit2 Specifies that each character is drawn using its glyph bitmap. Hinting is used to improve character appearance on stems and curvature.
AntiAlias3 Specifies that each character is drawn using its anti aliased glyph bitmap without hinting. Better quality due to anti aliasing. Stem width differences may be noticeable because hinting is turned off.
AntiAliasGridFit4 Specifies that each character is drawn using its anti aliased glyph bitmap with hinting. Much better quality due to anti aliasing, but at a higher performance cost.
ClearTypeGridFit5 Specifies that each character is drawn using its glyph CT bitmap with hinting. The highest quality setting. Used to take advantage of ClearType font features.
See Also