IVsContainedLanguage::GetTextViewFilter Method (IVsIntellisenseHost^, IOleCommandTarget^, IVsTextViewFilter^)
Visual Studio 2015
Returns a text view filter to handle delegated text view filtering responsibility.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
int GetTextViewFilter(
IVsIntellisenseHost^ pISenseHost,
IOleCommandTarget^ pNextCmdTarget,
[OutAttribute] IVsTextViewFilter^% pTextViewFilter
)
Parameters
- pISenseHost
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsIntellisenseHost^
[in] An IVsIntellisenseHost object representing the IntelliSense host.
- pNextCmdTarget
-
Type:
Microsoft.VisualStudio.OLE.Interop::IOleCommandTarget^
[in] An IOleCommandTarget object representing the command target to pass any unhandled commands to.
- pTextViewFilter
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsTextViewFilter^
[out] Returns an IVsTextViewFilter object representing the text view filter that is used by the contained language service to receive any commands passed to the text view.
From singlefileeditor.idl:
HRESULT GetTextViewFilter( [in] IVsIntellisenseHost* pISenseHost, [in] IOleCommandTarget* pNextCmdTarget, [out, retval] IVsTextViewFilter** pTextViewFilter);
Show: