VCFilter.Files Property
Gets the collection of files associated with the filter.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Декларация
ReadOnly Property Files As Object
Get
Object Files { get; }
property Object^ Files {
Object^ get ();
}
abstract Files : Object
function get Files () : Object
Property Value
Type: System.Object
An object representing the collection of files for the filter.
Remarks
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
Examples
The following example uses the Files property on a VCFilter object in the integrated development environment (IDE):
' Macro code.
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim idx, idx2 As Integer
Dim file As VCFile
Dim filter As VCFilter
Dim col, col2 As IVCCollection
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
col = prj.Filters
For idx = 1 To col.Count
filter = col.Item(idx)
' filter.Name has name of the folder
col2 = filter.Files
For idx2 = 1 To col2.Count
file = col2.Item(idx2)
' file.Name has name of file
Next
Next
End Sub
End Module
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.