Skip to main content

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