InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.Common Library / HostField Object / StartPosition Property
Example
In This Topic
    StartPosition Property (HostField)
    In This Topic
    Specifies the column and row coordinates of this field.
    Syntax
    expression.StartPosition As ScreenPoint object 
    where expression is a variable that represents a HostField Object
    Example
    Dim host As HostField 
    Dim point AsScreenPoint
                
    'Get the screen position (row , column)
    point = host.StartPosition
                
    'Get the row location.
    Dim row As Integer = point.Row
    'Get the column location.
    Dim column As Integer = point.Column
    See Also