FontStyle
FontStyle
enumeration contains identifiers determining the font style.
class FontStyle {
static const int NORMAL = 0;
static const int BOLD = 1;
static const int ITALIC = 2;
static const int BOLD_ITALIC = 3;
}
Constant | Description |
---|---|
NORMAL | normal |
BOLD | bold |
ITALIC | italic |
BOLD_ITALIC | bold italic |