You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.0 KiB
1.0 KiB
Command | Description |
---|---|
mceInsertClipboardContent | Triggers a paste event at the cursor location or over the current selection. The command requires an object with: content containing the HTML content, or text containing plain text. |
mceTogglePlainTextPaste | Toggles paste as plain text. |
Examples
tinymce.activeEditor.execCommand('mceInsertClipboardContent', false, {
content: '<p>Hello, World!</p>'
});
tinymce.activeEditor.execCommand('mceTogglePlainTextPaste');