VCProject.Files Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Nesnedeki dosyaların koleksiyonunu alır.
public:
property System::Object ^ Files { System::Object ^ get(); };
public:
property Platform::Object ^ Files { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(807)]
public object Files { [System.Runtime.InteropServices.DispId(807)] [System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable)] get; }
[<System.Runtime.InteropServices.DispId(807)>]
[<get: System.Runtime.InteropServices.DispId(807)>]
[<get: System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable)>]
member this.Files : obj
Public ReadOnly Property Files As Object
Özellik Değeri
Dosya koleksiyonu.
- Öznitelikler
Örnekler
Bu örneği derlemek ve çalıştırmak hakkında bilgi için bkz. nasıl yapılır: proje modeli genişletilebilirliği Için örnek kod derleme .
Aşağıdaki örnek, Files özelliği VCProject Tümleşik geliştirme ORTAMıNDA (IDE) bir nesne üzerinde kullanır:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim idx As Integer
Dim prj As VCProject
Dim mycollection As IVCCollection
Dim myfile As VCFile
prj = DTE.Solution.Projects.Item(1).Object
mycollection = prj.Files
MsgBox(mycollection.Count)
For idx = 1 To mycollection.Count
myfile = mycollection.Item(idx)
' myfile.Name has the name of the file
Next
End Sub
End Module