VCProject.AddFilter(String) Method

Definition

Adds a folder to the current project or folder.

public:
 Platform::Object ^ AddFilter(Platform::String ^ bstrFilterName);

Parameters

bstrFilterName
String

Required. The name of the folder to add.

Returns

A VCFilter object for the folder (filter) just added.

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 AddFilter on a VCProject object 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 folder As VCFilter  
        prj = DTE.Solution.Projects.Item(1).Object  
        folder = prj.AddFilter("NewFolder")  
        MsgBox(folder.Name.ToString())  
    End Sub  
End Module  

Remarks

AddFile adds a file to a folder.

Applies to

Produkt Wersje
Visual Studio SDK 2015, 2017, 2019, 2022