Skip to main content
A newer version of this page is available. .

FontFormattingSettings Class

Contains settings to define the font formatting.

Declaration

declare class FontFormattingSettings

Remarks

The example below demonstrates how to change properties of all characters in the active sub-document:

richEdit.selection.selectAll();
richEdit.commands.changeFontFormatting.execute({bold: true, size: 25, foreColor: "#789"});
See Also