Skip to content

Latest commit

 

History

History
67 lines (38 loc) · 1.55 KB

Word.Global.FindKey.md

File metadata and controls

67 lines (38 loc) · 1.55 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Global.FindKey property (Word)
vbawd10.chm163119175
vbawd10.chm163119175
Word.Global.FindKey
79203ae9-dcc9-ffb1-d974-0eb814268d6e
06/08/2017
medium

Global.FindKey property (Word)

Returns a KeyBinding object that represents the specified key combination. Read-only.

Syntax

expression. FindKey( _KeyCode_ , _KeyCode2_ )

expression A variable that represents a 'Global' object. Optional.

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.

Remarks

Use the BuildKeyCode method to create the KeyCode or KeyCode2 argument.

Example

This example disables the ALT+SHIFT+F12 key combination in the template attached to the active document. To return a KeyBinding object that includes more than two keys, use the BuildKeyCode method, as shown in the example.

CustomizationContext = ActiveDocument.AttachedTemplate 
FindKey(KeyCode:=BuildKeyCode(wdKeyAlt, wdKeyShift, _ 
 wdKeyF12)).Disable

This example displays the command assigned to the F1 key.

CustomizationContext = NormalTemplate 
MsgBox FindKey(KeyCode:=wdKeyF1).Command

See also

Global Object

[!includeSupport and feedback]