Back
GetClipboardText
GetClipboardText returns the current device clipboard text.
app.GetClipboardText() →
string
Example - Example
function OnStart()
{
var text = app.GetClipboardText();
app.ShowPopup( text );
}
Copy
Copy All
Run