InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / ScreenPoint Class / Column Property
Example


In This Topic
    Column Property (ScreenPoint)
    In This Topic
    Gets the column of this screen coordinate.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Column As Integer
    'Usage
     
    
    Dim instance As ScreenPoint
    Dim value As Integer
     
    value = instance.Column
    public int Column {get;}
    Example
    private ScreenPoint screenPoint;
    //Get the screen coordinate column.
    int column = screenPoint.Column;
    See Also