InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / ScreenRegion Class / StartColumn Property
Example


In This Topic
    StartColumn Property (ScreenRegion)
    In This Topic
    The starting column of the region.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property StartColumn As Integer
    'Usage
     
    
    Dim instance As ScreenRegion
    Dim value As Integer
     
    value = instance.StartColumn
    public int StartColumn {get;}
    Example
    private ScreenRegion screenRegion;
    //Get the starting column.
    int startColumn = screenRegion.StartColumn;
    See Also