Programming User Interaction > Programming Actions > Programming Action Mappings |
To program an action mapping, use the Add method to add the new action mapping to the collection.
For example, the following tells 2D Chart to undo all scaling and translations when the left mouse button is double-clicked:
Dim NewLeft As Object
With Chart2D1.ActionMaps
Set NewLeft = .Add WM_LBUTTONDBLCLK, 0, 0, oc2dActionReset
End With
All 2D Chart actions are customizable: you can determine which Microsoft Windows message will call a particular action, and decide on the appropriate steps to perform in each case.