InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.Common Library / HostField Object / EndPosition Property
Example
In This Topic
    EndPosition Property (HostField)
    In This Topic
    Specifies the column and row coordinates of the end position.
    Syntax
    expression.EndPosition 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.EndPosition
                
    'Get the row location.
    Dim row As Integer = point.Row
    'Get the column location.
    Dim column As integer column = point.Column
    See Also