const class graphics::Font
sys::Obj graphics::Font
@Js
@Serializable { simple=true }
Font models font-family, font-size, and font-style, and font-weight. Metrics are available for a predefined set of fonts.
- equals
-
virtual override Bool equals(Obj? that)
Equality is based on all fields.
- fromProps
-
static new fromProps(Str:Str props)
Construct from a map of CSS props such as font-family, font-size. Also see
toProps
. - fromStr
-
static new fromStr(Str s, Bool checked := true)
Parse font from string using CSS shorthand format for supported properties:
[<style>] [<weight>] <size> <names>
Examples:
Font.fromStr("12pt Arial") Font.fromStr("bold 10pt Courier") Font.fromStr("italic bold 8pt Times") Font.fromStr("italic 300 10pt sans-serif")
- hash
-
virtual override Int hash()
Return hash of all fields
- make
-
new make(|This| f)
Construct with it-block
- name
-
Str name()
First family name in
names
- names
-
const Str[] names := Str["sans-serif"]
List of prioritized family names
- size
-
const Float size := 11.0f
Size of font in points.
- style
-
const FontStyle style := FontStyle.normal
Style as normal, italic, or oblique
- toProps
-
Get CSS style properties for this font. Also see
fromProps
- toSize
-
Return this font with different point size.
- toStr
-
virtual override Str toStr()
Format as
"[style] [weight] <size>pt <names>"
- toStyle
-
Return this font with different style
- toWeight
-
Font toWeight(FontWeight weight)
Return this font with different weight.
- weight
-
const FontWeight weight := FontWeight.normal
Weight as number from 100 to 900