26 references to TextEditor
PresentationFramework (26)
System\Windows\Documents\TextStore.cs (26)
518this.TextEditor.SetText(range, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
760this.TextEditor.SetSelectedText(filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1250if (this.TextEditor.AcceptsRichContent && start.CompareTo(end) != 0)
1266this.TextEditor.MarkCultureProperty(range, InputLanguageManager.Current.CurrentInputLanguage);
1282this.TextEditor.SetText(range, unmergedText, InputLanguageManager.Current.CurrentInputLanguage);
1321this.TextEditor.CloseToolTip();
1477if (TextEditor.AllowOvertype && TextEditor._OvertypeMode && TextSelection.IsEmpty)
1512this.TextEditor.SetText(TextSelection, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1954text = this.TextEditor._FilterText(composition.Text, range);
1964text = this.TextEditor._FilterText(composition.CompositionText, range, /*filterMaxLength:*/false);
1996this.TextEditor.SetText(range, text, InputLanguageManager.Current.CurrentInputLanguage);
2071if (this.TextEditor == null)
2074if (this.TextEditor.TextView == null)
2077return this.TextEditor.TextView.RenderScope;
2083get { return this.TextEditor.UiScope; }
2088get { return this.TextEditor.TextContainer; }
2093get { return TextEditor.TextView; }
2309TextEditor textEditor = this.TextEditor;
3271string newText = this.TextEditor._FilterText(text, charsToReplaceCount, /*filterMaxLength:*/false);
3626FrameworkTextComposition composition = CreateComposition(this.TextEditor, this);
3814if (!this.TextEditor.AcceptsRichContent && this.TextEditor.MaxLength > 0)
3819int extraCharsAllowed = Math.Max(0, this.TextEditor.MaxLength - currentLength);
4128get { return this.TextEditor.Selection; }
4135return ((bool)this.UiScope.GetValue(TextEditor.IsReadOnlyProperty) || TextEditor.IsReadOnly);