abstract const class graphics::FontMetrics

sys::Obj
  graphics::FontMetrics

@Js

Source

FontMetrics represents font size information for a Font within a specific graphics context.

ascent

abstract Float ascent()

Source

Get ascent of this font which is the distance from baseline to top of chars, not including any leading area.

descent

abstract Float descent()

Source

Get descent of this font which is the distance from baseline to bottom of chars, not including any leading area.

height

abstract Float height()

Source

Get height of this font which is the sum of ascent, descent, and leading.

leading

abstract Float leading()

Source

Get leading of this font which is the distance above the ascent which may include accents and other marks.

width

abstract Float width(Str s)

Source

Get the width of the string when painted with this font.