Back

SetClipboardText

The SetClipboardText method puts text data on the device clip board. This allows you to copy and paste text between different applications.

 app.SetClipboardText( text );

Example

function OnStart()
{
  app.SetClipboardText( "Sample Text" );
}

  Copy   Copy All    Run