Tutorial: system.clipboard.write

system.clipboard.write

Writes data into the clipboard

Example

fin.desktop.System.Clipboard.write({
    text:'Hello Text!',
    html:'<h1>Hello Html</h1>',
    rtf:'Hello Rtf'
}, null, () => {
    console.log('Success!!');
}, (reason, err) => {
    console.log(`Error while reading the clipboard Message: ${err.message}, Stack: ${err.stack}`);
});