CharInfo class
Extended information about the character formatting.
final class CharInfo {
public final Rect Rect;
public final Point[] Quadrangle;
public final int ForegroundColor;
public final int BackgroundColor;
public final int Attributes;
}
Properties
Name | Type | Description |
---|---|---|
Attributes | int |
Character attributes as the OR combination of the following flags:
int CHAR_ATTRIBUTE_ITALIC = 0x1; |
BackgroundColor | int |
The color of the background.
|
ForegroundColor | int | The color of the symbol. |
Quadrangle | Point[] | The four vertex points of the bounding quadrangle. The vertices are indexed clockwise starting from the bottom left. |
Rect | Rect | The bounding rectangle of the symbol. |
3/2/2022 12:59:15 PM