30 references to TextEditor
PresentationFramework (30)
MS\Internal\Helper.cs (1)
1477
System.Windows.Documents.TextEditor te = tbb.
TextEditor
;
System\Windows\Controls\CustomDictionarySources.cs (2)
309
if (_owner.
TextEditor
== null)
313
return _owner.
TextEditor
.Speller;
System\Windows\Controls\Primitives\TextBoxBase.cs (13)
127
TextEditorCopyPaste.Copy(this.
TextEditor
, false);
135
TextEditorCopyPaste.Cut(this.
TextEditor
, false);
144
TextEditorCopyPaste.Paste(this.
TextEditor
);
317
this.
TextEditor
.Undo();
335
this.
TextEditor
.Redo();
386
this.
TextEditor
.Selection.BeginChange();
394
if (this.
TextEditor
.Selection.ChangeBlockLevel == 0)
399
this.
TextEditor
.Selection.EndChange();
408
return this.
TextEditor
.Selection.DeclareChangeBlock();
2096
if ((textBox.
TextEditor
!= null) && (textBox.
TextEditor
.TextStore != null))
2104
textBox.
TextEditor
.TextStore.OnGotFocus();
2124
caretElement.UpdateCaretBrush(TextSelection.GetCaretBrush(textBoxBase.
TextEditor
));
System\Windows\Controls\RichTextBox.cs (5)
119
Invariant.Assert(this.
TextEditor
!= null);
120
Invariant.Assert(this.
TextEditor
.TextContainer == this.TextContainer);
225
return this.
TextEditor
.GetSpellingErrorAtPosition(position, position.LogicalDirection);
244
SpellingError spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, position.LogicalDirection);
270
return (TextPointer)this.
TextEditor
.GetNextSpellingErrorPosition(position, direction);
System\Windows\Controls\TextBox.cs (7)
95
this.
TextEditor
.AcceptsRichContent = false;
479
SpellingError spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Forward);
484
spellingError = this.
TextEditor
.GetSpellingErrorAtPosition(position, LogicalDirection.Backward);
557
position = this.
TextEditor
.GetNextSpellingErrorPosition(position, direction);
1039
this.
TextEditor
.Speller != null)
1041
this.
TextEditor
.Speller.ResetErrors();
1673
UndoManager undoManager =
TextEditor
._GetUndoManager();
System\Windows\Documents\Run.cs (1)
272
UndoManager undoManager = rtb.
TextEditor
._GetUndoManager();
System\windows\Documents\TextEditorTyping.cs (1)
247
TextEditor This = richTextBox.
TextEditor
;