プラグインに割り当てられている URL (Uniform Resource Locator)を返します。
サポートされているプラットフォーム: Windows のみ
名前空間: AcStMgr
アセンブリ: AcStMgr.tlb
VB.NET:
Public ReadOnly Property HRef() As String _ Implements IAcStPlugin2.HRef Get Return "..." End Get End Property
C#:
public string HRef { get { return "..."; } }
タイプ: IAcStPlugin2 インタフェース
このプロパティが適用されるオブジェクト。
読み込み専用: はい
タイプ: 文字列
プラグインに割り当てられている URL (Uniform Resource Locator)。
一覧表示される URL は、プラグインに関する情報を取得することができる Web サイトにユーザを案内する必要があります。
追加の注意はありません。
バージョン: AutoCAD 2004 以降
VB.NET:
Public ReadOnly Property HRef() As String _ Implements IAcStPlugin2.HRef Get Return "http://www.mycadaddons.com/layers/" End Get End Property
C#:
public string HRef { get { return "http://www.mycadaddons.com/layers/"; } }