FontSpec
The FontSpec class represents a specification for a font. The constructor is accessible from scripts.
Fields
Field | Type | Description |
| string | Read only. The font family; e.g., Arial, New Times Roman, SansSerif, etc. |
| 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. |
| number or AUTOSIZE | Read Only. The point size of the font. Can be set to AUTOSIZE when the |
| number | |
| number | |
| 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