IVsRegisterNewDialogFilters Interface

 

Installs custom filters for the Add New Project or Add New Item dialogs. You can get an instance of the interface from the SVsRegisterNewDialogFilters (SID_SVsRegisterNewDialogFilters) service.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

[InterfaceTypeAttribute(1)]
[GuidAttribute("9455BDB5-2A5A-45F1-A558-72B88A78E6E3")]
public interface IVsRegisterNewDialogFilters

NameDescription
System_CAPS_pubmethodRegisterAddNewItemDialogFilter(IVsFilterAddProjectItemDlg, UInt32)

Registers a filter for the AddNewItem dialog.

System_CAPS_pubmethodRegisterNewProjectDialogFilter(IVsFilterNewProjectDlg, UInt32)

Registers a new filter for the AddNewProject dialog.

System_CAPS_pubmethodUnregisterAddNewItemDialogFilter(UInt32)

Unregisters a filter for the AddNewItem dialog.

System_CAPS_pubmethodUnregisterNewProjectDialogFilter(UInt32)

Unregisters a filter for the AddNewProject dialog.

A filter you add through this interface must implement either the IVsFilterAddProjectItemDlg interface, or the IVsFilterNewProjectDlg interface.

Return to top
Show: