返回介绍

KeyBindings 集合对象

发布于 2019-09-29 09:50:57 字数 1047 浏览 1106 评论 0 收藏 0

Application
KeyBindings (KeyBinding)

该对象为 KeyBinding 对象组成的集合,这些元素对象代表当前上下文中自定义键盘布局。在“自定义键盘”对话框中进行自定义键盘布局。

使用 Keybindings 集合

可用 KeyBindings 属性返回 KeyBindings 集合。下例在选定内容后插入 KeyBindings 集合中每个项目的命令名称和组合键。

CustomizationContext = NormalTemplate
For Each aKey In KeyBindings
 Selection.InsertAfter aKey.Command & vbTab _
 & aKey.KeyString & vbCr
 Selection.Collapse Direction:=wdCollapseEnd
Next aKey

可用 Add 方法在 KeyBindings 集合中添加一个 KeyBindings 对象。下列示例为活动文档中的“标题 1”样式添加 Ctrl+Alt+H 组合键。

CustomizationContext = ActiveDocument
KeyBindings.Add KeyCategory:=wdKeyCategoryStyle, _
 Command:="Heading 1", _
 KeyCode:=BuildKeyCode(wdKeyControl, wdKeyAlt, wdKeyH)

可用 KeyBindings (index) 返回一个 KeyBinding 对象,此处index 为索引号。下例显示 KeyBindings 集合中第一个 KeyBinding 对象对应的命令。

MsgBox KeyBindings(1).Command

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文