FontSpec
The FontSpec class represents a specification for a font. The constructor is accessible from scripts.
Fields
Field
Type
Description
family
string
Read only. The font family; e.g., Arial, New Times Roman, SansSerif, etc.
style
Font Style Type
Read Only. The derived style of the font, plain, bold, italic or bold/italic. Note that fonts like Arial Bold that have an inherent style have this field set to plain.
size
number or AUTOSIZE
ascent
number
descent
number
uppercaseHeight
number
Methods
init( family, style, size )
Creates a new FontSpec with the given family, style and size.
Constants
Font Style Type
Indicates a style of plain.
Indicates a style of bold. This can be orβed with
ITALIC
.
Indicates a style of italic. This can be orβed with
BOLD
Font Size Type
Indicates the size should be determined algorithmically. Only used for the
entityTitleFont
field of Document.
Last updated