FontStyle Type
Lists values that specify style information applied to text.
Declaration
export type FontStyle = "Regular" | "Bold" | "Italic" | "Underline" | "Strikeout"
Members
| Name | Description |
|---|---|
| "Regular" | Normal text. |
| "Bold" | Bold text. |
| "Italic" | Italic text. |
| "Underline" | Underlined text. |
| "Strikeout" | Text with a line through the middle. |
Remarks
Values listed in this type alias are used to set the AppearanceSettings.fontStyle property.