Specifies the quality at which text is rendered.
Namespace: Kettic.AspNet.Controls.ChartModel.StylesAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
SyntaxPublic Enumeration TextQuality
public enum class TextQuality
Members
| Member name | Value | Description |
---|
| SystemDefault | 0 |
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.
|
| SingleBitPerPixel | 1 |
Specifies that each character is drawn using its glyph bitmap. Hinting is not used.
|
| SingleBitPerPixelGridFit | 2 |
Specifies that each character is drawn using its glyph bitmap. Hinting is used to improve character appearance on stems and curvature.
|
| AntiAlias | 3 |
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.
|
| AntiAliasGridFit | 4 |
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.
|
| ClearTypeGridFit | 5 |
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