确定指定的弹出菜单是否为快捷菜单。 支持的平台:仅窗口 属性值只读:是的 类型:布尔
言论没有额外的评论。 例子工 务 局: Sub Example_ShortcutMenu()
' This example iterates through the menus collection and
' determines if each menu is the shortcut menu.
' Note that depending on how many menus are currently loaded, the
' menuStatus string may not be displayed in full.
Dim currMenu As AcadPopupMenu
Dim menuStatus As String
menuStatus = ""
For Each currMenu In ThisDrawing.Application.MenuGroups.Item(0).Menus
If currMenu.shortcutMenu Then
menuStatus = menuStatus & currMenu.name & " is the shortcut menu." & vbCrLf
Else
menuStatus = menuStatus & currMenu.name & " is not the shortcut menu." & vbCrLf
End If
Next currMenu
MsgBox menuStatus
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_ShortcutMenu()
;; This example iterates through the menus collection and
;; determines if each menu is the shortcut menu.
(setq acadObj (vlax-get-acad-object))
;; Note that depending on how many menus are currently loaded, the
;; menuStatus string may not be displayed in full.
(setq menuStatus "")
(vlax-for currMenu (vla-get-Menus (vla-Item (vla-get-MenuGroups acadObj) 0))
(if (= (vla-get-ShortcutMenu currMenu) :vlax-true)
(setq menuStatus (strcat menuStatus (vla-get-Name currMenu) " is a shortcut menu.\n"))
(setq menuStatus (strcat menuStatus (vla-get-Name currMenu) " is not a shortcut menu.\n"))
)
)
(alert menuStatus)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 08:47
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.