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.

23 lines
453 B

10 years ago
  1. ---
  2. layout: default
  3. title: Print plugin
  4. title_nav: Print
  5. description: Print the content in TinyMCE.
  6. keywords: file
  7. controls: toolbar button, menu item
  8. ---
  9. This plugin adds a print button to the toolbar. It also adds a `Print` item to the `File` menu dropdown.
  10. **Type:** `String`
  11. ##### Example
  12. ```js
  13. tinymce.init({
  14. selector: "textarea", // change this value according to your HTML
  15. plugins: "print",
  16. menubar: "file",
  17. toolbar: "print"
  18. });
  19. ```