KeyBinding.Execute method (Word)

Runs the command associated with the specified key combination.

Syntax

expression. Execute

expression Required. A variable that represents a 'KeyBinding' object.

Example

This example assigns the CTRL+SHIFT+C key combination to the FileClose command and then executes the key combination (the document is closed).

CustomizationContext = ActiveDocument.AttachedTemplate 
Keybindings.Add KeyCode:=BuildKeyCode(wdKeyControl, _ 
 wdKeyShift, wdKeyC), KeyCategory:=wdKeyCategoryCommand, _ 
 Command:="FileClose" 
FindKey(BuildKeyCode(wdKeyControl, wdKeyShift, wdKeyC)).Execute

See also

KeyBinding Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.