Returns the name of the company or individual who wrote the plug-in.
Supported platforms: Windows only
Namespace: AcStMgr
Assembly: 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 "...";
}
}
Type: IAcStPlugin2 interface
The interface this property applies to.
Read-only: Yes
Type: String
The author of the plug-in.
No additional remarks.
Releases: AutoCAD 2004 and later
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"; }
}