Application.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 an Application 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

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))

See also

Application 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.