Constructors
constructor
- new Font(font?, size?, bold?, italic?): Font
Parameters
- font: null | string = null
- size: null | number = null
- bold: boolean = false
- italic: boolean = false
Methods
copy
- copy(): Font
クローンされたインスタンス
equals
- equals(other): boolean
Returns boolean
完全に同じフォントの場合は true
reset_default
- reset_default(): Font
自身のインスタンス
to_str
- to_str(): string
Returns string
全てのフォント情報が含まれた文字列
with_bold
- with_bold(flag?): Font
太字かどうかのみ変更したフォント
with_italic
- with_italic(flag?): Font
イタリック体かどうかのみ変更したフォント
with_size
- with_size(size): Font
サイズのみ変更したフォント
フォントを保持するクラス