Application.KeysBoundTo (Word)

Gibt ein KeysBoundTo -Objekt zurück, das alle Tastenkombinationen darstellt, die dem angegebenen Element zugewiesen sind.

KeysBoundTo (KeyCategory, Command, CommandParameter)


Dim kbLoop As KeyBinding 
Dim strOutput As String 
 
CustomizationContext = ActiveDocument.AttachedTemplate 
 
For Each kbLoop In _ 
 KeysBoundTo(KeyCategory:=wdKeyCategoryCommand, _ 
 Command:="FileOpen") 
 strOutput = strOutput & kbLoop.KeyString & vbCr 
Next kbLoop 
 
MsgBox strOutput

Arguments

Hier sind die benannte Argumente :

KeyCategory (WdKeyCategory) - Die Kategorie der Tastenkombination.

Dies sind mögliche Werte für WdKeyCategory

Command (String) - Der Name des Befehls.

Optional arguments

Das folgendes Argument ist optional

CommandParameter (KeyBindings) - Zusätzlicher Text (sofern vorhanden), der für den durch Command angegebenen Befehl erforderlich ist.