Tutorial: system.clipboard.readHtml

system.clipboard.readHtml

Read the content of the clipboard as Html

Example

fin.desktop.System.Clipboard.readHtml(null, html => {
    console.log(`This is the html from the clipboard: ${html}`);
}, (reason, err) => {
    console.log(`Error while reading the clipboard Message: ${err.message}, Stack: ${err.stack}`);
});