26 references to TextEditor
PresentationFramework (26)
System\Windows\Documents\TextStore.cs (26)
529this.TextEditor.SetText(range, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
771this.TextEditor.SetSelectedText(filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1264if (this.TextEditor.AcceptsRichContent && start.CompareTo(end) != 0)
1280this.TextEditor.MarkCultureProperty(range, InputLanguageManager.Current.CurrentInputLanguage);
1296this.TextEditor.SetText(range, unmergedText, InputLanguageManager.Current.CurrentInputLanguage);
1335this.TextEditor.CloseToolTip();
1491if (TextEditor.AllowOvertype && TextEditor._OvertypeMode && TextSelection.IsEmpty)
1526this.TextEditor.SetText(TextSelection, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1971text = this.TextEditor._FilterText(composition.Text, range);
1981text = this.TextEditor._FilterText(composition.CompositionText, range, /*filterMaxLength:*/false);
2013this.TextEditor.SetText(range, text, InputLanguageManager.Current.CurrentInputLanguage);
2088if (this.TextEditor == null)
2091if (this.TextEditor.TextView == null)
2094return this.TextEditor.TextView.RenderScope;
2100get { return this.TextEditor.UiScope; }
2105get { return this.TextEditor.TextContainer; }
2110get { return TextEditor.TextView; }
2326TextEditor textEditor = this.TextEditor;
3286string newText = this.TextEditor._FilterText(text, charsToReplaceCount, /*filterMaxLength:*/false);
3644FrameworkTextComposition composition = CreateComposition(this.TextEditor, this);
3832if (!this.TextEditor.AcceptsRichContent && this.TextEditor.MaxLength > 0)
3837int extraCharsAllowed = Math.Max(0, this.TextEditor.MaxLength - currentLength);
4146get { return this.TextEditor.Selection; }
4153return ((bool)this.UiScope.GetValue(TextEditor.IsReadOnlyProperty) || TextEditor.IsReadOnly);