Removes a key mapping from the keyboard map.
This example removes an extended key mapping from the keyboard map.
'This example removes an extended key mapping from the keyboard map
Sub removeKeyboardMapping2()
Dim kbmapping As KeyboardMapping
Dim sequence As InputMapActionSequence
Dim action As InputMapAction
Dim path As String
path = Environ$("USERPROFILE") & "\Documents\Micro Focus\Reflection\Keyboard Maps\" & "myKeyboardMap.xkb"
Set kbmapping = New KeyboardMapping
'Assign the key
kbmapping.key = Keys_RMenu
'Remove the key mapping from the session keyboard map
ThisIbmTerminal.KeyboardMapper.RemoveMapping_2 kbmapping.key, True
ThisIbmTerminal.KeyboardMapper.SaveAs (path)
End Sub