共用方式為


Configuration.Type 屬性

取得常數,指出物件型別。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property Type As vsConfigurationType
    Get
vsConfigurationType Type { get; }
property vsConfigurationType Type {
    vsConfigurationType get ();
}
abstract Type : vsConfigurationType
function get Type () : vsConfigurationType

屬性值

型別:EnvDTE.vsConfigurationType
vsConfigurationType 常數,指定組態的型別。

備註

對組態而言,Type 會傳回常數,指出組態集合是特定組態名稱的組態資料列,還是指定平台的組態資料行。 如果該視窗屬於某個環境工具,則 Type 會識別該工具。 如果視窗屬於套件提供的工具或文件視窗,則 Type 是 vsWindowTypeToolWindowvsWindowTypeDocument,而且 ObjectKind 屬性會指出特定套件的型別資訊。

範例

public void CodeExample(DTE2 dte, AddIn addin)
{   // Make sure you have a solution loaded into Visual Studio
    // before running the following example.
    try
    {
        Project prj;
        Configuration config; 
        ConfigurationManager configmgr;
        if (dte.Solution.Projects.Count > 0)
        {
            prj = dte.Solution.Projects.Item(1);
            config = prj.ConfigurationManager.ActiveConfiguration;
            // Returning the Configuration type constant.
            MessageBox.Show(config.Type.ToString());
            // Returns the ConfigurationManager containing the active configuration.
            configmgr = config.Collection;
            // Returns the application containing this active configuration.
            MessageBox.Show(config.DTE.Name);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

.NET Framework 安全性

請參閱

參考

Configuration 介面

EnvDTE 命名空間

其他資源

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