Programming with Reflection
GetMouseMap method
Syntax MouseString = object.GetMouseMap Modifiers, Chord
Returns the commands associated with the specified mouse chord.
Modifiers Argument type: Enumeration
The modifier keys associated with the specified mouse chord. Use rcNormal when there are no modifier keys in this mouse chord. The various possible combinations of modifier keys are defined by the set of values for this argument:
rcNormal
rcAlt
rcCtrl
rcShift
rcAltShift
rcCtrlShift
rcAltCtrl
rcAltCtrlShift
Chord Argument type: String
Identify the button using "LeftBtn", "MiddleBtn", or "RightBtn" as the value for this argument. To identify the double-click of a particular button, add "_DblClk" at the end of the string; for example, "LeftBtn_DblClk".
This method returns an error if the chord is not currently mapped, or if it is not a valid keystroke or chord name.
MouseString Return type: String
The commands associated with the specified mouse chord.