VCProject::RemoveFilter Method (Object^)
Visual Studio 2015
Removes a folder from the current project and any files or other folders in the folder.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Parameters
- Filter
-
Type:
System::Object^
Required. The filter.
The contents of the Resource Files folder, including the contents of any subfolders under Resource Files, will also be removed from the project.
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
The following example uses RemoveFilter in the integrated development environment (IDE):
' add reference to Microsoft.VisualStudio.VCProjectEngine Imports EnvDTE Imports Microsoft.VisualStudio.VCProjectEngine Public Module Module1 Sub Test() Dim prj As VCProject Dim MyCol As IVCCollection Dim filter As VCFilter prj = DTE.Solution.Projects.Item(1).Object MyCol = prj.Filters filter = MyCol.Item("Resource Files") prj.RemoveFilter(filter) End Sub End Module
Show: