Copies text to the Windows clipboard.
static int32 SetString( string p_sNewClipboardText )
| Parameter Type | Parameter Name | Documentation |
|---|---|---|
| string | p_sNewClipboardText | The string to copy to the Windows clipboard. |
import library "app_service_console_util.ssl";
Clipboard.SetString( "Hello!" );
Console.Out( Clipboard.GetString() );
Hello!