Package | flash.text |
Class | public final class GridFitType |
Inheritance | GridFitType ![]() |
See also
Constant | Defined By | ||
---|---|---|---|
NONE : String = "none" [static]
Doesn't set grid fitting. | GridFitType | ||
PIXEL : String = "pixel" [static]
Fits strong horizontal and vertical lines to the pixel grid. | GridFitType | ||
SUBPIXEL : String = "subpixel" [static]
Fits strong horizontal and vertical lines to the sub-pixel
grid on LCD monitors. | GridFitType |
NONE | Constant |
public static const NONE:String = "none"
Doesn't set grid fitting. Horizontal and vertical lines
in the glyphs are not forced to the pixel grid.
This constant is used in setting the gridFitType
property of the
TextField class. This is often a good setting for animation
or for large font sizes.
Use the syntax GridFitType.NONE
.
See also
PIXEL | Constant |
public static const PIXEL:String = "pixel"
Fits strong horizontal and vertical lines to the pixel grid.
This constant is used in setting the gridFitType
property of the
TextField class. This setting only works for left-justified text
fields and acts like the GridFitType.SUBPIXEL
constant in static
text. This setting generally provides the best readability for left-aligned text.
Use the syntax GridFitType.PIXEL
.
See also
SUBPIXEL | Constant |
public static const SUBPIXEL:String = "subpixel"
Fits strong horizontal and vertical lines to the sub-pixel
grid on LCD monitors. (Red, green, and blue are actual pixels on an LCD screen.)
This is often a good setting for right-aligned or center-aligned dynamic
text, and it is sometimes a useful tradeoff for animation vs. text quality.
This constant is used in setting the gridFitType
property of the
TextField class.
Use the syntax GridFitType.SUBPIXEL
.
See also