26 references to TextEditor
PresentationFramework (26)
System\Windows\Documents\TextStore.cs (26)
517this.TextEditor.SetText(range, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
759this.TextEditor.SetSelectedText(filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1249if (this.TextEditor.AcceptsRichContent && start.CompareTo(end) != 0)
1265this.TextEditor.MarkCultureProperty(range, InputLanguageManager.Current.CurrentInputLanguage);
1281this.TextEditor.SetText(range, unmergedText, InputLanguageManager.Current.CurrentInputLanguage);
1320this.TextEditor.CloseToolTip();
1476if (TextEditor.AllowOvertype && TextEditor._OvertypeMode && TextSelection.IsEmpty)
1511this.TextEditor.SetText(TextSelection, filteredText, InputLanguageManager.Current.CurrentInputLanguage);
1953text = this.TextEditor._FilterText(composition.Text, range);
1963text = this.TextEditor._FilterText(composition.CompositionText, range, /*filterMaxLength:*/false);
1995this.TextEditor.SetText(range, text, InputLanguageManager.Current.CurrentInputLanguage);
2070if (this.TextEditor == null)
2073if (this.TextEditor.TextView == null)
2076return this.TextEditor.TextView.RenderScope;
2082get { return this.TextEditor.UiScope; }
2087get { return this.TextEditor.TextContainer; }
2092get { return TextEditor.TextView; }
2308TextEditor textEditor = this.TextEditor;
3270string newText = this.TextEditor._FilterText(text, charsToReplaceCount, /*filterMaxLength:*/false);
3625FrameworkTextComposition composition = CreateComposition(this.TextEditor, this);
3813if (!this.TextEditor.AcceptsRichContent && this.TextEditor.MaxLength > 0)
3818int extraCharsAllowed = Math.Max(0, this.TextEditor.MaxLength - currentLength);
4127get { return this.TextEditor.Selection; }
4134return ((bool)this.UiScope.GetValue(TextEditor.IsReadOnlyProperty) || TextEditor.IsReadOnly);