FindKey Property

Applies To

Application object, Global object.

Description

Returns a KeyBinding object that represents the specified key combination. Read-only.

Syntax

expression.FindKey(KeyCode, KeyCode2)

expression Optional. An expression that returns an Application object.

KeyCode Required Long. A key you specify by using one of the WdKey constants.

KeyCode2 Optional Variant. A second key you specify by using one of the WdKey constants.

Remarks

You can use the BuildKeyCode method to create the KeyCode or KeyCode2 argument.

See Also

BuildKeyCode method, CustomizationContext 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