CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2023 开发者帮助

Author 属性 (ActiveX/CSP)

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

Author 属性 (ActiveX/CSP)

返回编写插件的公司或个人的名称。

支持的平台:仅限 Windows

命名空间:AcStMgr (英语)

集会:AcStMgr.tlb

签名

VB.NET:

Public ReadOnly Property Author() As String _
                Implements IAcStPlugin2.Author
    Get
        Return "..."
    End Get
End Property

C#:

public string Author {
    get {
         return "...";
    }
}
对象

类型:IAcStPlugin2 接口

此属性应用于的接口。

属性值

只读:是的

类型:字符串

插件的作者。

言论

没有其他评论。

发行信息

释放:AutoCAD 2004 及更高版本

  • AcStMgr.tlb - AutoCAD 2004 及更高版本

例子

VB.NET:

Public ReadOnly Property Author() As String _
                Implements IAcStPlugin2.Author
    Get
        Return "My CAD Add-ons, LLC"
    End Get
End Property

C#:

public string Author
{
    get { return "My CAD Add-ons, LLC"; }
}

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部