Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / IbmScreen Object / FindField1 Method
The screen row to start the search from
The screen column to start the search from
Find direction that specifies the direction to search.
In This Topic
    FindField1 Method
    In This Topic
    Locates a field starting from the specified row and column.
    Syntax
    expression.FindField1( _
       ByVal startRow As Integer, _
       ByVal startColumn As Integer, _
       ByVal findoption As FindOption _
    ) As HostField object 
    where expression is a variable that represents a IbmScreen Object

    Parameters

    startRow
    The screen row to start the search from
    startColumn
    The screen column to start the search from
    findoption
    Find direction that specifies the direction to search.

    Return Value

    A host field that is found, or Nothing if it is not found.
    Exceptions
    ExceptionDescription
    This exception is thrown if the startRow or startColumn parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
    Remarks
    findoption specifies the direction to search. A search can go up or down the host screen. The method returns the host field if it finds one or Nothing if not.
    See Also