CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

ActiveX 开发指南

相关分类

布局切换事件 (ActiveX)

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

摘要: 在用户切换到其他布局后触发。

在用户切换到其他布局后触发。

支持的平台:仅窗口

签名

工 务 局:

object.LayoutSwitched(LayoutName)
对象

类型:文档

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

布局名称

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

用户已切换到的布局的名称。

言论

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

例子

工 务 局:

Private Sub AcadDocument_LayoutSwitched(ByVal LayoutName As String)
    ' This example intercepts a drawing LayoutSwitched event.
    '
    ' This event is triggered when the user switches to a different
    ' drawing layout view.
    '
    ' To trigger this example event: Open a drawing and change its layout view
    '
    ' For example: Switch the drawing from Model view to Layout1 view

    ' Use the "LayoutName" variable to determine the which layout view we changed to
    MsgBox "The drawing layout was just changed to: " & LayoutName
End Sub

Visual LISP:

Not available

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2024-5-27 09:45

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部