CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

ActiveX 开发指南

相关分类

对象擦除事件 (ActiveX)

2023-1-2 23:38| 发布者: admin| 查看: 254| 评论: 0|来自: AutoCAD

摘要: 从图形中拭除对象时触发。

从图形中拭除对象时触发。

支持的平台:仅窗口

签名

工 务 局:

object.ObjectErased(ObjectID)
对象

类型:文档

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

对象标识

类型:LONG_PTR;处理程序的输入

已擦除的对象的对象 ID。

言论

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

例子

工 务 局:

Private Sub AcadDocument_ObjectErased(ByVal ObjectID As Long_PTR)
    ' This example intercepts a drawing ObjectErased event.
    '
    ' This event is triggered when an object is removed from a drawing.
    '
    ' To trigger this example event: Delete (Cut) an existing object from an open drawing

    ' Use the "Object" variable to determine the type of object removed
    MsgBox "The ID of the object deleted is: " & ObjectID

End Sub

Visual LISP:

Not available

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2024-5-12 20:27

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部