InfoConnect for Airlines VBA Guide
RemoveMapping Method (MouseMapper)
The mouse/key combination to remove the mapping for.
Removes a mouse mapping from the mouse map.
Syntax
object.RemoveMapping( _
   ByVal mapping As MouseButtonCombination _
) 

Parameters

mapping
The mouse/key combination to remove the mapping for.
Example
This sample removes a mouse wheel mapping from the mouse map.
Public Sub RemoveMouseMappingAction()
   
    Dim combo As MouseButtonCombination
 
    Set combo = New MouseButtonCombination
   
    'Set the mouse button combination to remove from the map
    combo.WheelDirection = MouseWheelDirection_WheelDown
 
    'Remove the mapping from the mouse map
    ThisIbmTerminal.MouseMapper.RemoveMapping combo
    
End Sub
See Also