共用方式為


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

參數

傳回值

型別: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 安全性

請參閱

參考

Properties 介面

EnvDTE 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例