VCProject.RemoveFilter(Object) Method
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.
Removes a folder from the current project and any files or other folders in the folder.
public:
void RemoveFilter(System::Object ^ Filter);
public:
void RemoveFilter(Platform::Object ^ Filter);
void RemoveFilter(winrt::Windows::Foundation::IInspectable const & Filter);
[System.Runtime.InteropServices.DispId(813)]
public void RemoveFilter (object Filter);
[<System.Runtime.InteropServices.DispId(813)>]
abstract member RemoveFilter : obj -> unit
Public Sub RemoveFilter (Filter As Object)
Parameters
- Filter
- Object
Required. The filter.
- 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 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
Remarks
The contents of the Resource Files folder, including the contents of any subfolders under Resource Files, will also be removed from the project.