Reference.ExtenderNames プロパティ
オブジェクトで使用できる Extender のリストを取得します。
名前空間: VSLangProj
アセンブリ: VSLangProj (vslangproj.dll 内)
構文
'宣言
'使用
プロパティ値
文字列のオートメーション対応の配列を含むオブジェクト。
解説
ExtenderCATID プロパティによって指定される CATID を使って、このオブジェクトに現在適用できる Extender の名前を返します。
使用例
Sub ExtenderNamesExample(ByVal dte As DTE2)
Dim names() As String = CType(dte.Solution.ExtenderNames, String())
Dim exts, name As String
For Each name In names
exts &= name & vbCrLf
Next
MsgBox(dte.Solution.FullName & " has the following extenders:" & _
vbCrLf & vbCrLf & exts)
End Sub
public void ExtenderNamesExample(DTE2 dte)
{
string[] names = (string[])dte.Solution.ExtenderNames;
string exts = "";
foreach (string name in names)
{
exts += name + Environment.NewLine;
}
MessageBox.Show(dte.Solution.FullName +
" has the following extenders:" + Environment.NewLine +
Environment.NewLine + exts);
}
参照
処理手順
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する
関連項目
Reference インターフェイス
Reference メンバ
VSLangProj 名前空間