Global.KeyBindings プロパティ (Word)
キー コード、キー カテゴリ、およびコマンドは、ユーザー設定のキーの割り当てを表す KeyBindings コレクションを返します。
構文
式。 KeyBindings
expression 必須です。 'Global' オブジェクトを表す変数。
例
This example assigns the CTRL+ALT+W key combination to the FileClose command. This keyboard customization is saved in the Normal template.
CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyControl, wdKeyAlt, _
wdKeyW), KeyCategory:=wdKeyCategoryCommand, _
Command:="FileClose"
次の使用例は、 KeyBindings コレクションのコマンド名と各項目のキーの組み合わせを表す文字列を挿入します。
Dim kbLoop As KeyBinding
CustomizationContext = NormalTemplate
For Each kbLoop In KeyBindings
Selection.InsertAfter kbLoop.Command & vbTab _
& kbLoop.KeyString & vbCr
Selection.Collapse Direction:=wdCollapseEnd
Next kbLoop
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。