Documentation
¶
Overview ¶
Package fontstyle contains all default font styles.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Type ¶
type Type string
Type is a representation of a style DefaultFont.
const ( // Normal represents a normal style. Normal Type = "" // Bold represents a bold style. Bold Type = "B" // Italic represents an italic style. Italic Type = "I" // BoldItalic represents a bold and italic style. BoldItalic Type = Bold + Italic // Underline represents underlined style. Underline Type = "U" // Strikethrough represents strike-through style. Strikethrough Type = "S" )
Click to show internal directories.
Click to hide internal directories.