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