1 write to _textView
Microsoft.VisualStudio.LanguageServices (1)
Preview\PreviewUpdater.cs (1)
26
_textView
= textView;
7 references to _textView
Microsoft.VisualStudio.LanguageServices (7)
Preview\PreviewUpdater.cs (7)
28
_textView
.Properties[typeof(PreviewTagger)] = _tagger;
42
var spanInBuffer = new SnapshotSpan(
_textView
.TextBuffer.CurrentSnapshot, new Span(_tagger.Span.Start, 0));
43
_textView
.ViewScroller.EnsureSpanVisible(spanInBuffer, EnsureSpanVisibleOptions.None);
85
_textView
.TextBuffer.ChangeContentType(contentType, null);
89
using (var edit =
_textView
.TextBuffer.CreateEdit())
91
edit.Replace(new Span(0,
_textView
.TextBuffer.CurrentSnapshot.Length), documentText);
95
container =
_textView
.TextBuffer.AsTextContainer();