openfl
Version:
A fast, productive library for 2D cross-platform development.
41 lines (32 loc) • 984 B
TypeScript
declare namespace openfl.text {
/**
* The FontStyle class provides values for the TextRenderer class.
*/
export enum FontStyle {
/**
* Defines the bold style of a font for the `fontStyle` parameter
* in the `setAdvancedAntiAliasingTable()` method. Use the syntax
* `FontStyle.BOLD`.
*/
BOLD = "bold",
/**
* Defines the italic style of a font for the `fontStyle`
* parameter in the `setAdvancedAntiAliasingTable()` method. Use
* the syntax `FontStyle.ITALIC`.
*/
BOLD_ITALIC = "boldItalic",
/**
* Defines the italic style of a font for the `fontStyle`
* parameter in the `setAdvancedAntiAliasingTable()` method. Use
* the syntax `FontStyle.ITALIC`.
*/
ITALIC = "italic",
/**
* Defines the plain style of a font for the `fontStyle` parameter
* in the `setAdvancedAntiAliasingTable()` method. Use the syntax
* `FontStyle.REGULAR`.
*/
REGULAR = "regular"
}
}
export default openfl.text.FontStyle;