Am looking into some examples such as this one on code project where it uses IVsTextViewCreationListener and this walkthrough on ms docs where it talks about IWpfTextViewCreationListener
What is the difference between them and when to use what? First felt that there would be some common ancestor something like ITextViewCreationListener, but there isn't.
What is a text view? There is IWpfTextView, then there is IVsTextView and also there is ITextView
IWpfTextView derives from ITextView but IVsTextView does not.
I gained some idea about IWpfTextView and ITextView from the article Inside the editor here.
I am still not clear about IVsTextView.
Kindly throw some light in simple words.