30 references to TextEditor
PresentationFramework (30)
src\Framework\MS\Internal\Helper.cs (1)
1509System.Windows.Documents.TextEditor te = tbb.TextEditor;
src\Framework\System\Windows\Controls\CustomDictionarySources.cs (2)
337if (_owner.TextEditor == null) 341return _owner.TextEditor.Speller;
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (13)
152TextEditorCopyPaste.Copy(this.TextEditor, false); 166TextEditorCopyPaste.Cut(this.TextEditor, false); 175TextEditorCopyPaste.Paste(this.TextEditor); 348this.TextEditor.Undo(); 366this.TextEditor.Redo(); 417this.TextEditor.Selection.BeginChange(); 425if (this.TextEditor.Selection.ChangeBlockLevel == 0) 430this.TextEditor.Selection.EndChange(); 439return this.TextEditor.Selection.DeclareChangeBlock(); 2212if ((textBox.TextEditor != null) && (textBox.TextEditor.TextStore != null)) 2220textBox.TextEditor.TextStore.OnGotFocus(); 2240caretElement.UpdateCaretBrush(TextSelection.GetCaretBrush(textBoxBase.TextEditor));
src\Framework\System\Windows\Controls\RichTextBox.cs (5)
126Invariant.Assert(this.TextEditor != null); 127Invariant.Assert(this.TextEditor.TextContainer == this.TextContainer); 238return this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 257SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 283return (TextPointer)this.TextEditor.GetNextSpellingErrorPosition(position, direction);
src\Framework\System\Windows\Controls\TextBox.cs (7)
102this.TextEditor.AcceptsRichContent = false; 512SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 517spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Backward); 592position = this.TextEditor.GetNextSpellingErrorPosition(position, direction); 1036this.TextEditor.Speller != null) 1038this.TextEditor.Speller.ResetErrors(); 1672UndoManager undoManager = TextEditor._GetUndoManager();
src\Framework\System\Windows\Documents\Run.cs (1)
282UndoManager undoManager = rtb.TextEditor._GetUndoManager();
src\Framework\System\windows\Documents\TextEditorTyping.cs (1)
264TextEditor This = richTextBox.TextEditor;