Example of undefined in Javascript Rich Text Editor Control

/
/
Format Painter

This demo demonstrates the Format Painter feature of the Rich Text Editor control. With Format Painter, copy and apply styles from one content to another.

More Details...

Format Painter in Rich Text Editor

The Format Painter allows you to quickly copy and apply text formatting within the editor, saving time and ensuring consistency.

How to Use Format Painter?
  • Select the text with the formatting you want to copy.
  • Click the Format Painter button (paintbrush icon) in the toolbar.
  • The cursor changes to a paintbrush icon.
  • Click and drag over the text where you want to apply the copied format.
  • Release the mouse button, and the formatting will be applied.
Why Use Format Painter?
  • Saves time when formatting large documents.
  • Ensures consistency in text styles.
  • Easy to use for writers, editors, and content creators.
Allowed Formats
Denied Formats
Description

The Format Painter feature allows you to copy the formats and apply them to content without formatting thus saving time to reformat the content. Format painter can be accessed via the toolbar or the keyboard shortcuts. The sticky mode can be enabled by double-clicking the toolbar button, and it can be utilized to apply a format to multiple locations. Keyboard Shortcut ALT + SHIFT + C - Copy the selection format or current range. ALT + SHIFT + V - Paint the copied format. ESC - Remove the previously copied format and disable the sticky mode. The following settings are available to customize the format painter in the formatPainterSettings property. Fill the Allowed Formats input with selectors only whose format styles will be allowed. For example: span; strong; em; as the input allows only the span, strong, and em format styles to be copied. Fill the Denied Formats input with selectors only whose format styles will be explicitly prohibited. For example: span(important)[title]{background-color,color} as the input will remove only the important class, title attribute, color, and background-color of the span element. All other format styles will be copied. Injecting Modules: The Format Painter feature is segregated as an individual module. To use the format painter import and then inject it into the RichTextEditor. For example, inject the 'FormatPainter' module using RichTextEditor.Inject(HtmlEditor, Toolbar, QuickToolbar, FormatPainter ,Table, Link, Image, Audio, Video, PasteCleanup); to use the format painter feature.