Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / IbmScreen Object / SelectAll Method
Example
In This Topic
    SelectAll Method (IbmScreen)
    In This Topic
    Selects all of the text in the terminal window.
    Syntax
    expression.SelectAll() 
    where expression is a variable that represents a IbmScreen Object
    Example
    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
    See Also