CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2024 开发者帮助

StatusID 属性 (ActiveX)

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

StatusID 属性 (ActiveX)

获取视口的当前活动状态。

支持的平台:仅限 Windows

签名

VBA:

object.StatusID(VportObj)
对象

类型: 应用

此属性应用于的对象。

VportObj

类型:视口

要查询其状态的视口。

属性值

只读:是的

类型:布尔

  • True:指定的视口是当前活动的视口。
  • False:指定的视口不是当前活动的视口。

言论

没有其他评论。

例子

VBA:

Sub Example_StatusID()
    ' This example displays the setting of StatusID.

    Dim currStatusID As Boolean
    
    ' Display the current setting of statusID
    currStatusID = ThisDrawing.Application.statusID(ThisDrawing.ActiveViewport)
    MsgBox "The statusID of the active viewport is: " & currStatusID, , "StatusID Example"
    
End Sub

可视化 LISP:

(vl-load-com)
(defun c:Example_StatusID()
    ;; This example displays the setting of StatusID.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))

    ;; Display the current setting of statusID
    (setq currStatusID (vla-get-statusID acadObj (vla-get-ActiveViewport doc)))
    (alert (strcat "The statusID of the active viewport is: " (if (= currStatusID :vlax-true) "True" "False")))
)

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2024-12-15 22:03

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部