共用方式為


VCProjectEngine.Platforms 屬性

取得專案引擎上的平台集合。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
ReadOnly Property Platforms As Object
Object Platforms { get; }
property Object^ Platforms {
    Object^ get ();
}
abstract Platforms : Object with get
function get Platforms () : Object

屬性值

類型:Object
專案引擎上的平台集合。

範例

如需如何編譯及執行範例的詳細資訊,請參閱 如何:編譯專案模型擴充性的範例程式碼

下列範例取得的目前專案組態的平台。

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, plats As IVCCollection
        Dim cfg As VCConfiguration
        Dim ProjEng As VCProjectEngine
        Dim plat As VCPlatform
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        ProjEng = cfgs.VCProjectEngine
        plats = ProjEng.Platforms
        plat = plats.Item(1)
        MsgBox(plat.Name)
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCProjectEngine 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間