Back

GetClipboardText

GetClipboardText returns the text that is copied to the clipboard

app.GetClipboardText() -> string

Example - Example



function OnStart()
{
    var text = app.GetClipboardText();
    app.ShowPopup( text );
}
    Copy     Copy All       Run