AddIn.Name プロパティ
更新 : 2007 年 11 月
AddIn オブジェクトの名前を取得します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Name As String
'使用
Dim instance As AddIn
Dim value As String
value = instance.Name
string Name { get; }
property String^ Name {
String^ get ();
}
function get Name () : String
プロパティ値
型 : System.String
AddIn オブジェクトの名前を表す文字列。
例
public void AddinCollExample(AddIn addIn)
{
// For this example to work, there should be an add-in
// available in the Visual Studio enviroment.
string peers = "";
// Retrieve all peer elements of the addin.
foreach (AddIn someAddin in addIn.Collection)
{
if ((someAddin != addIn) && (someAddin.Name != null))
peers += someAddin.Name + "\n";
}
MessageBox.Show(addIn.Name + " has the following peer elements:\n\n" + peers);
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。