Properties.Item 方法
傳回 Properties 集合的索引成員。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Function Item ( _
index As Object _
) As Property
Property Item(
Object index
)
Property^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> Property
function Item(
index : Object
) : Property
參數
index
類型:Object必要項。 要傳回之 Property 物件的索引。
傳回值
類型:EnvDTE.Property
Property 物件。
備註
傳遞至 Index 的值,可以是 Property 集合中 Properties 物件的索引值,或是集合中 Property 物件的名稱。
如果無法在集合中找到指定值,Item 方法就會擲回 ArgumentException 例外狀況。
範例
public void CodeExample(DTE2 dte)
{
try
{ // Open a solution before running this example
Properties props = dte.Solution.Properties;
Property prop;
string msg;
msg = "How many properties are there in the current solution: " + props.Count.ToString();
msg += "\nThe application containing this Properties collection is " + props.DTE.Name;
msg += "\nThe parent object of the Properties collection is a " + ((Solution)props.Parent).FullName;
msg += "\nThe application property returns : " + ((DTE2)props.Application).Name;
if (props.Count > 0)
{
prop = props.Item(1);
msg += "\nThe first Property in the Properties collection is " + prop.Name;
}
MessageBox.Show(msg);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。