Global.KeyString Method (Word)
Returns the key combination string for the specified keys (for example, CTRL+SHIFT+A).
Syntax
expression .KeyString(KeyCode, KeyCode2)
expression A variable that represents a Global object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
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. |
Return Value
String
Remarks
You can use the BuildKeyCode method to create the KeyCode or KeyCode2 argument.
Example
This example displays the key combination string (CTRL+SHIFT+A) for the following WdKey constants: wdKeyControl, wdKeyShift, and wdKeyA.
CustomizationContext = ActiveDocument.AttachedTemplate
MsgBox KeyString(KeyCode:=BuildKeyCode(wdKeyControl, _
wdKeyShift, wdKeyA))