Application.BuildKeyCode method (Word)
Returns a unique number for the specified key combination.
Syntax
expression. BuildKeyCode
(Arg1, Arg2, Arg3, Arg4)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Arg1 | Required | WdKey | A key you specify by using one of the WdKey constants. |
Arg2 - Arg4 | Optional | WdKey | A key you specify by using one of the WdKey constants. |
Example
This example assigns the ALT + F1 key combination to the Organizer command.
CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(Arg1:=wdKeyAlt, _
Arg2:=wdKeyF1), KeyCategory:=wdKeyCategoryCommand, _
Command:="Organizer"
This example removes the ALT+F1 key assignment from the Normal template.
CustomizationContext = NormalTemplate
FindKey(BuildKeyCode(Arg1:=wdKeyAlt, Arg2:=wdKeyF1)).Clear
This example displays the command assigned to the F1 key.
CustomizationContext = NormalTemplate
MsgBox FindKey(BuildKeyCode(Arg1:=wdKeyF1)).Command
See also
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.