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


In This Topic
    CurrentSelectionMode Property (ScreenRegion)
    In This Topic
    The current selection mode of the region.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property CurrentSelectionMode As SelectionMode
    'Usage
     
    
    Dim instance As ScreenRegion
    Dim value As SelectionMode
     
    value = instance.CurrentSelectionMode
    public SelectionMode CurrentSelectionMode {get;}
    Example
    private ScreenRegion screenRegion;
    private SelectionMode mode;
    //Get the type of selected region.
    mode = screenRegion.SelectionMode;
    See Also