Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / HostField Object
In This Topic
    HostField Object
    In This Topic
    HostField represents a field on the host screen that includes field attributes, a start position, and a field length.
    Example
    This example finds the first field on the screen and prints its row, column, length, and text.
    Sub FindAndPrintHostFieldValue()
     
        Dim hostfieldvar As HostField
        
        Set hostfieldvar = ThisIbmScreen.FindField1(1, 1, FindOption_Forward)
        
        Debug.Print hostfieldvar.toString
           
    End Sub
    See Also