FontMakeWithSize
Type
operator
Summary
Creates a new instance of the named font.
Syntax
font <mName> at size <mSize>
Description
Creates a new instance of the named font.
Parameters
Name | Type | Description |
---|---|---|
mName | An expression which evaluates to a string. | |
mSize | An Expression which evaluates to a number. |
Examples
// Create 20pt Arial font
variable tFont as Font
put font "Arial" at size 20 into tFont