CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

ActiveX 开发指南

相关分类

作者属性 (ActiveX/CSP)

2023-1-2 20:03| 发布者: admin| 查看: 178| 评论: 0|来自: AutoCAD

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

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

支持的平台:仅窗口

Namespace: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 "...";
    }
}
对象

类型:IAcSt插件2接口

此属性应用到的接口。

属性值

只读:是的

类型:字符串

插件的作者。

言论

没有额外的评论。

发布信息

释放: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 )

GMT+8, 2024-5-11 12:17

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部