We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(part of UI)
Returns: font
Parameters: aFont (font)
Returns a copy of aFont, suitable for further modification.
aFont
Note: You must always copy the font prior to modification; else you may modify the original object.
var aFont = UI.makeFont ( "Helvetica", 20, "bold" ); var bFont = UI.copyFont ( aFont ); bFont.size = 30; // bFont is { family: "Helvetica", size: 30, weight: "bold" );
0.3 Introduced; Docs Valid