RemoveMapping Method (MouseMapper)
Removes a mouse mapping from the mouse map.
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