プラグインを書いた会社または個人の名前を返します。
サポートされているプラットフォーム: 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 以降
VB.NET:
Public ReadOnly Property Author() As String _
Implements IAcStPlugin2.Author
Get
Return "Custom Plug-ins Developer"
End Get
End Property
C#:
public string Author
{
get { return "Custom Plug-ins Developer"; }
}