InfoConnect for Airlines
CurrentSelectionMode Property (ScreenRegion)
Example 


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