IVsTaskList::AutoFilter2 Method (Guid)
Visual Studio 2015
Filters the task list so only the specified view is shown.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- guidCustomView
-
Type:
System::Guid
[in] GUID of the view to filter on.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsTaskList::AutoFilter2( REFGUID guidCustomView );
IVsTaskList.AutoFilter2 allows you to filter a task list to show only a specific view. The view can either be a built-in view, or a custom view. Custom views are entirely registry based. You must specify the columns of the view and their order, the category of tasks shown in the view, and the default sort order for the view. For more information, see Creating a Custom Task List View.
Show: