CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2019 开发者帮助

EndSave 事件 (ActiveX)

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

EndSave 事件 (ActiveX)

在AutoCAD完成图形保存时触发。

支持的平台:仅限 Windows

签名

VBA:

object.EndSave(Filename)
对象

类型: 应用

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

文件名

类型:字符串

保存的文件的名称。

言论

该事件紧随AutoCAD完成图形保存后的事件之后。EndSave BeginSave

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

例子

VBA:

Private Sub AcadDocument_EndSave(ByVal FileName As String)
    ' This example intercepts a drawing EndSave event.
    '
    ' This event is triggered when a drawing finishes a save request.
    '
    ' To trigger this example event: Save an open drawing and wait for the save to complete

    ' Use the "FileName" variable to determine where the drawing file was saved
    MsgBox "A drawing has just been saved to: " & FileName
End Sub

可视化 LISP:

Not available

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2025-1-19 06:40

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部