Display of HTML Preview window, the same as the HTMLPreview action step. Returns true if user closed preview with the "Continue" button, false if the user cancelled.
let html = "<html><body>My Document</body></html>" let preview = HTMLPreview.create(); preview.show(html);
Open HTML Preview window displaying the HTML string passed.
The HTML content to display. Should be complete HTML document.
Generated using TypeDoc
HTMLPreview
Display of HTML Preview window, the same as the HTMLPreview action step. Returns true if user closed preview with the "Continue" button, false if the user cancelled.
Example
let html = "<html><body>My Document</body></html>" let preview = HTMLPreview.create(); preview.show(html);