CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2020 开发者帮助

EndShortcutMenu 事件 (ActiveX)

2024-5-18 18:22| 发布者: admin| 查看: 65| 评论: 0|原作者: admin|来自: AutoCAD

EndShortcutMenu 事件 (ActiveX)

在快捷菜单出现后触发。

支持的平台:仅限 Windows

签名

VBA:

object.EndShortcutMenu(ShortcutMenu)
对象

类别: 文档

计算结果为有效容器对象的对象表达式。在这种情况下,唯一有效的容器是文档。

快捷菜单

类型:PopupMenu 对象;处理程序的输入/输出

已显示的快捷菜单。

言论

使用此事件可以对快捷菜单执行任何清理工作。

显示模式对话框时不会触发任何事件。

例子

VBA:

Private Sub AcadDocument_EndShortcutMenu(ShortcutMenu As AutoCAD.IAcadPopupMenu)
    ' This example intercepts a drawing EndShortcutMenu event.
    '
    ' This event is triggered when the user closes a drawing shortcut menu.
    '
    ' To trigger this example event: Right click the mouse in the working area of a drawing,
    ' wait for the shortcut menu to be displayed and then dismiss the shortcut menu

    MsgBox "A shortcut menu was just closed!"
End Sub

可视化 LISP:

Not available

路过

雷人

握手

鲜花

鸡蛋

最新评论

QQ|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1   苏公网安备32011402011833)

GMT+8, 2024-12-15 12:55

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部