expression.Paste()
where expression is a variable that represents a IbmScreen Object
Copies data from the Clipboard to the cursor location in the terminal window.
expression.Paste()
Sub CutAndPaste() Dim text As String Dim field As HostField Dim rcode As ReturnCode ThisIbmScreen.SetSelectionStartPos 1, 29 ThisIbmScreen.ExtendSelectionRect 1, 48 ThisIbmScreen.Cut rcode = ThisIbmScreen.MoveCursorTo1(5, 19) ThisIbmScreen.Paste End Sub