SelectAll Method (IbmScreen)
Selects all of the text in the terminal window.
This sample selects the entire screen area and copies it to the clipboard. You can test this sample by pasting the contents into a text editor.
Sub SelectAndCopyAScreen()
ThisIbmScreen.SelectAll
ThisIbmScreen.Copy
End Sub