This plugin adds a print button to the toolbar. It also adds a Print
item to the File
menu dropdown.
Basic setup
tinymce.init({
selector: 'textarea', // change this value according to your HTML
plugins: 'print',
menubar: 'file',
toolbar: 'print'
});
Toolbar buttons
The Print plugin provides the following toolbar buttons:
Toolbar button identifier | Description |
---|---|
print | Prints the current editor contents. |
These toolbar buttons can be added to the editor using:
- The
toolbar
configuration option. - The
quickbars_insert_toolbar
configuration option. - Custom Context toolbars.
Menu items
The Print plugin provides the following menu items:
Menu item identifier | Default Menu Location | Description |
---|---|---|
print | File | Prints the current document. |
These menu items can be added to the editor using:
- The
menu
configuration option. - The
contextmenu
configuration option. - Custom Menu toolbar buttons.
Commands
The Print plugin provides the following JavaScript command.
Command | Description |
---|---|
mcePrint | Opens the browser’s print dialog for the current page. |
Example
tinymce.activeEditor.execCommand('mcePrint');
Was this article helpful? Yes - No
Well, that's awkward . Would you mind opening an issue or helping us out?
Thanks for the feedback!
Can't find what you're looking for? Let us know.
Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.