IVsTextViewFilter Interface
Allows further modification of the text view.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Name | Description | |
|---|---|---|
![]() | GetDataTipText(TextSpan[], String) | Provides data-tip support by obtaining the string value of the tip text. |
![]() | GetPairExtents(Int32, Int32, TextSpan[]) | Returns the location of a matching pair item, given the location of the first item. |
![]() | GetWordExtent(Int32, Int32, UInt32, TextSpan[]) | Calculates the word extent based on a character position. |
When you implement IVsTextViewFilter on your object, also provide an IOleCommandTarget interface off of the object. Retrieve IVsTextViewFilter by querying the IOleCommandTarget interface that is passed into the AddCommandFilter method. There should be one IVsTextViewFilter object for each view. The view is implicit when you make calls to this interface.
See illustrations of the implementation and/or calling of this interface in the sample .d166df06-9a77-491d-aa81-6834a4ad7e50
Notes to Implementers:
Implement this interface to further customize the core text editor.
