InfoConnect for Airlines
ModifierKeys Property (MouseButtonCombination)
Example 


Gets the modifier key(s) associated with the combination.
Syntax
'Declaration
 
Public ReadOnly Property ModifierKeys As Keys
'Usage
 
Dim instance As MouseButtonCombination
Dim value As Keys
 
value = instance.ModifierKeys
public Keys ModifierKeys {get;}
Example
private System.Windows.Forms.Keys key;
private MouseButtonCombination mouseCombination;
//Call The ModifierKeys property
key = mouseCombination.ModifierKeys;
See Also