Tutorial: system.clipboard.writeRtf

system.clipboard.writeRtf

Write content to the clipboard as Rtf

Example

fin.desktop.System.Clipboard.writeRtf('Hello World!', null, () => {
    console.log('Success!!');
}, (reason, err) => {
    console.log(`Error while reading the clipboard Message: ${err.message}, Stack: ${err.stack}`);
});