This example sets a value for the Clipboard text and pastes it to the current cursor location. You should be connected when you run this procedure.
Sub SetClipboardTextAndPasteIt ()
With Session
.SetClipboardText "Test"
.Paste
End With
End Sub