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