7 references to TextView
Microsoft.CodeAnalysis.CSharp.EditorFeatures (7)
EventHookup\EventHookupSessionManager.cs (7)
63
var caretPoint = analyzedSession.
TextView
.GetCaretPoint(analyzedSession.SubjectBuffer);
74
_toolTipPresenter = _toolTipService.CreatePresenter(analyzedSession.
TextView
,
93
analyzedSession.
TextView
.TextSnapshot.TextBuffer.Changed += TextBuffer_Changed;
94
CurrentSession.Dismissed += () => { analyzedSession.
TextView
.TextSnapshot.TextBuffer.Changed -= TextBuffer_Changed; };
96
analyzedSession.
TextView
.Caret.PositionChanged += Caret_PositionChanged;
97
CurrentSession.Dismissed += () => { analyzedSession.
TextView
.Caret.PositionChanged -= Caret_PositionChanged; };
179
var caretPoint = CurrentSession.
TextView
.GetCaretPoint(CurrentSession.SubjectBuffer);