IVsCompletionSetEx::IncreaseFilterLevel Method (Int32)

 

Show in the completion list the members of the specified type.

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

int IncreaseFilterLevel(
	int iSelectedItem
)

Parameters

iSelectedItem
Type: System::Int32

[in] The index of the item of interest.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From textmgr2.idl:

HRESULT IVsCompletionSetEx::IncreaseFilterLevel(
   [in] long iSelectedItem
);

The internal list controlled by the IVsCompletionSet must be updated in response to a change in filter levels. The selected item in this method is from the Common list and specifies what should appear in the secondary list.

Return to top
Show: