VCFilter.Files 属性
获取文件的集合与筛选器。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
ReadOnly Property Files As Object
Object Files { get; }
property Object^ Files {
Object^ get ();
}
abstract Files : Object with get
function get Files () : Object
属性值
类型:System.Object
表示文件集合筛选器的对象。
备注
有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码 。
示例
下面的示例在集成开发环境 (ide) 使用在 VCFilter 对象的 Files 属性 (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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。