FindKey Property Example

This example disables the ALT+SHIFT+F12 key combination in the template attached to the active document. To return a KeyBinding object that includes more than two keys, use the BuildKeyCode method, as shown in the example.

CustomizationContext = ActiveDocument.AttachedTemplate
FindKey(KeyCode:=BuildKeyCode(wdKeyAlt, wdKeyShift, _
    wdKeyF12)).Disable

This example displays the command assigned to the F1 key.

CustomizationContext = NormalTemplate
MsgBox FindKey(KeyCode:=wdKeyF1).Command