CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2023 开发者帮助

EndPlot 事件 (ActiveX)

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

EndPlot 事件 (ActiveX)

在将文档发送到打印机后触发。

支持的平台:仅限 Windows

签名

VBA:

object.EndPlot(DrawingName)
对象

类型:应用程序文档

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

绘图名称

类型:字符串;输入到处理程序

已打印的图形的名称。

言论

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

例子

VBA:

Private Sub AcadDocument_EndPlot(ByVal DrawingName As String)
    ' This example intercepts a drawing EndPlot event.
    '
    ' This event is triggered when a drawing finishes a plot request.
    '
    ' To trigger this example event: Plot an open drawing and wait for the plot to finish

    ' Use the "DrawingName" variable to determine which drawing just finished plotting
    MsgBox "A drawing has just finished a plot request!"
End Sub

可视化 LISP:

Not available

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2024-12-15 11:57

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部