Reflection
IsExtendedKey Property (KeyboardMapping)
Example 


Gets or sets whether this mapping includes an extended key.
Syntax
'Declaration
 
Public Property IsExtendedKey As Boolean
'Usage
 
Dim instance As KeyboardMapping
Dim value As Boolean
 
instance.IsExtendedKey = value
 
value = instance.IsExtendedKey
public bool IsExtendedKey {get; set;}
Example
KeyboardMapping map ;
bool ExtKey = map.IsExtendedKey;
See Also