Projects.Kind プロパティ
更新 : 2007 年 11 月
オブジェクトの種類または型を示す GUID 文字列を取得します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Kind As String
'使用
Dim instance As Projects
Dim value As String
value = instance.Kind
string Kind { get; }
property String^ Kind {
String^ get ();
}
function get Kind () : String
プロパティ値
型 : System.String
オブジェクトの型を表す GUID 文字列。
解説
環境の拡張機能では、一意に定義された型文字列が使用できる必要があります。この情報は、各ツールまたは各言語のタイプ ライブラリやドキュメントで使用できる必要があります。
例
public void CodeExample(DTE2 dte)
{
try
{ // Open a project before running this sample
Projects prjs = dte.Solution.Projects;
string msg = "There are " + prjs.Count.ToString() + " projects in this collection.";
msg += "\nThe application containing this Projects collection: " + prjs.DTE.Name;
msg += "\nThe parent object of the Projects collection: " + prjs.Parent.Name;
msg += "\nThe GUID representing the Projects type: " + prjs.Kind;
if (prjs.Properties != null)
{
msg += "\nProperties:";
foreach (Property prop in prjs.Properties)
{
msg += "\n " + prop.Name;
}
}
MessageBox.Show(msg, "Projects Collection");
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。