VCProject.Files Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of files on the object.
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
Property Value
The collection of files.
- Attributes
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
The following example uses the Files property on a VCProject object in the integrated development environment (IDE):
' 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