InfoConnect for Airlines
MappingCollection Property (KeyboardMapper)
Example 


Returns a set of all the keys that have been remapped in the current keyboard map.
Syntax
'Declaration
 
Public ReadOnly Property MappingCollection As KeyboardMapping()
'Usage
 
Dim instance As KeyboardMapper
Dim value() As KeyboardMapping
 
value = instance.MappingCollection
public KeyboardMapping[] MappingCollection {get;}
Example
private KeyMapper mapper;
private KeyboardMapping[] Keymap;
//Get collection of keys.
keymap = mapper.MappingCollection;
See Also