HRef プロパティ(ActiveX/CSP)

プラグインに割り当てられている 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 "...";
    }
}
object

タイプ: 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/"; }
}