How does the clipboard function works. I tried the following way:
onClipboardEvent = (e) => { console.log("EVENT HAS OCCURRED: "); console.log(e.clipboardData); };
It gives me undefined though the copy event triggers this method.
Can someone help me with this? I want the clipboard data from remote when something is copied to remote's clipboard.
How does the clipboard function works. I tried the following way:
onClipboardEvent = (e) => { console.log("EVENT HAS OCCURRED: "); console.log(e.clipboardData); };It gives me undefined though the copy event triggers this method.
Can someone help me with this? I want the clipboard data from remote when something is copied to remote's clipboard.