InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / KeyboardMapper Class / MappingCollection Property
Example


In This Topic
    MappingCollection Property (KeyboardMapper)
    In This Topic
    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