Property.Name プロパティ
オブジェクトの名前を取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Name As String
Get
string Name { get; }
property String^ Name {
String^ get ();
}
abstract Name : string
function get Name () : String
プロパティ値
型: System.String
オブジェクトの名前を表す文字列値。
例
public void CodeExample(DTE2 dte)
{
try
{ // Open a solution before running this example
Properties props = dte.Solution.Properties;
Property prop;
string msg = "";
if (props.Count > 0)
{
prop = props.Item(1); // Get first property
msg += "\nThis Property is named: " + prop.Name;
msg += "\nThis Property is located in a collection within
the following solution: " +
((Solution)prop.Collection.Parent).FullName;
if (prop.Parent.Equals(prop.Collection))
msg += "\nThe parent and collection properties return
the same object.";
msg += "\nThe DTE property returns: " + prop.DTE.Name;
}
MessageBox.Show(msg, "Property Object");
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。