Configurations.Type 屬性
取得表示組態型別的常數。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property Type As vsConfigurationType
vsConfigurationType Type { get; }
property vsConfigurationType Type {
vsConfigurationType get ();
}
abstract Type : vsConfigurationType with get
function get Type () : vsConfigurationType
屬性值
類型:EnvDTE.vsConfigurationType
vsConfigurationType 常數,指定組態的型別。
備註
Type 會針對組態傳回常數,指出組態集合是特定組態名稱的組態資料列,或是指定平台之組態資料行。 如果該視窗屬於某個環境工具,則 Type 會識別該工具。 如果視窗是針對套件提供的工具或是文件視窗,則 Type 會是 vsWindowTypeToolWindow 或 vsWindowTypeDocument,而 ObjectKind 屬性指示特定套件類型的資訊。
範例
public void CodeExample(DTE2 dte, AddIn addin)
{
try
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example. Make sure the "Any CPU"
// option is marked in the Configuration Manager dialog box.
Configurations configs = null;
if (dte.Solution.Projects.Count > 0)
{
configs = dte.Solution.Projects.Item(1).ConfigurationManager.Platform("Any CPU");
// Show the type of configuration.
MessageBox.Show(configs.Type.ToString());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。