CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2019 开发者帮助

Version 属性 (ActiveX)

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

Version 属性 (ActiveX)

获取您正在使用的 AutoCAD 应用程序的版本。

支持的平台:仅限 Windows

签名

VBA:

object.Version
对象

类型: 应用

此属性应用于的对象。

属性值

只读:是的

类型:字符串

您正在使用的 AutoCAD 版本。

言论

注意:此属性的值存储在 ACADVER 系统变量中。

例子

VBA:

Sub Example_Version()
    ' This example returns AutoCAD version as a string
    
    Dim version As String
    version = ThisDrawing.Application.version
    MsgBox "This is AutoCAD Version " & version, , "Version Example"
    
End Sub

可视化 LISP:

(vl-load-com)
(defun c:Example_Version()
    ;; This example returns AutoCAD version as a string
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
    
    (setq version (vla-get-Version acadObj))
    (alert (strcat "This is AutoCAD Version " version))
)

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部