VCProject.RemoveFilter Method
Visual Studio 2008
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.
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
- 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.