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