Back

SetClipboardText

Hello World

The SetClipboardText method puts text data on the device clip board.

app.SetClipboardText( text )

This allows you to copy and paste text between different applications.

See Also: GetClipboardText

Example - Example

function OnStart()
{
    app.SetClipboardText( "Sample Text" );
}
    Copy     Copy All       Run      
string