InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / HostField Class / EndPosition Property
Example


In This Topic
    EndPosition Property (HostField)
    In This Topic
    Gets the column and row coordinates of the end position.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property EndPosition As ScreenPoint
    'Usage
     
    
    Dim instance As HostField
    Dim value As ScreenPoint
     
    value = instance.EndPosition
    public ScreenPoint EndPosition {get;}
    Example
    HostField host;
    ScreenPoint point;
                
    //Get the screen position (row , column)
    point = host.EndPosition;
                
    int row = point.Row;//Get the row location.
    int column = point.Column;//Get the column location.
    See Also