VCFile.FileConfigurations 屬性
在 [選取的檔案上設定的清單。
命名空間: Microsoft.VisualStudio.VCProjectEngine
組件: Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
語法
'宣告
ReadOnly Property FileConfigurations As Object
Object FileConfigurations { get; }
property Object^ FileConfigurations {
Object^ get ();
}
abstract FileConfigurations : Object with get
function get FileConfigurations () : Object
屬性值
型別:System.Object
陣列的組態。
備註
在檔案上的設定會對應到專案組態。請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。
範例
下列範例會使用FileConfigurations在整合式的開發環境 (IDE) 中的屬性:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim idx, idx2 As Integer
Dim mycollection As IVCCollection
Dim file As VCFile
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
mycollection = prj.Files
MsgBox(mycollection.Count)
For idx = 1 To mycollection.Count
file = mycollection.Item(idx)
For idx2 = 1 To file.FileConfigurations.Count
MsgBox(file.FileConfigurations.Item(idx2).Name())
Next
Next
End Sub
End Module
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。