4 instantiations of TextEditor
PresentationFramework (4)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1003_textEditor = new TextEditor(Document.StructuralCache.TextContainer, this, false);
src\Framework\System\Windows\Controls\PasswordBox.cs (1)
902_textEditor = new TextEditor(_textContainer, this, true);
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1054_textEditor = new TextEditor(textContainer, this, false);
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1526_textEditor = new TextEditor(_textContainer, this, true);
420 references to TextEditor
PresentationFramework (420)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
3122private TextEditor TextEditor
src\Framework\MS\Internal\Documents\DocumentViewerHelper.cs (1)
93internal static ITextRange Find(FindToolBar findToolBar, TextEditor textEditor, ITextView textView, ITextView masterPageTextView)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
458var textEditor = position.TextContainer.TextSelection?.TextEditor;
src\Framework\MS\Internal\Helper.cs (1)
1509System.Windows.Documents.TextEditor te = tbb.TextEditor;
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (1)
1070return viewer == null ? null : TextEditor.GetTextSelection(viewer);
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (3)
1579TextEditor textEditor = TextEditor; 1880private TextEditor TextEditor 1884TextEditor textEditor = null;
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (4)
124ClearValue(TextEditor.PageHeightProperty); 1031SetValue(TextEditor.PageHeightProperty, e.ViewportHeight); 1347TextEditor.RegisterCommandHandlers(typeof(FlowDocumentScrollViewer), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true); 1824private TextEditor _textEditor; // Text editor (enables text selection)
src\Framework\System\Windows\Controls\PasswordBox.cs (3)
865TextEditor.RegisterCommandHandlers(typeof(PasswordBox), /*acceptsRichContent:*/false, /*readOnly*/false, /*registerEventListeners*/false); 1057ITextView textview = TextEditor.GetTextView(_renderScope); 1316private TextEditor _textEditor;
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (3)
751internal TextEditor TextEditor 1504TextEditor.RegisterCommandHandlers(typeof(DocumentViewerBase), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true); 1679private TextEditor _textEditor; // TextEditor associated with DocumentViewer.
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (12)
457TextEditor.IsReadOnlyProperty.AddOwner( 469get { return (bool) GetValue(TextEditor.IsReadOnlyProperty); } 470set { SetValue(TextEditor.IsReadOnlyProperty, value); } 1572if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1574position = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, snapToText); 1615if (TextEditor.GetTextView(this.RenderScope).Validate(position)) 1618rect = TextEditor.GetTextView(this.RenderScope).GetRectangleFromTextPosition(position); 1655SetValue(TextEditor.PageHeightProperty, this.ScrollViewer.ViewportHeight); 1675ClearValue(TextEditor.PageHeightProperty); 1862internal TextEditor TextEditor 2106SetValue(TextEditor.PageHeightProperty, e.ViewportHeight); 2275private TextEditor _textEditor;
src\Framework\System\Windows\Controls\RichTextBox.cs (1)
100TextEditor.RegisterCommandHandlers(typeof(RichTextBox), /*acceptsRichContent:*/true, /*readOnly*/false, /*registerEventListeners*/false);
src\Framework\System\Windows\Controls\SpellCheck.cs (4)
213TextEditor textEditor = TextEditor._GetTextEditor(textBoxBase); 233TextEditor textEditor = TextEditor._GetTextEditor(textBoxBase);
src\Framework\System\Windows\Controls\TextBox.cs (7)
94TextEditor.RegisterCommandHandlers(typeof(TextBox), /*acceptsRichContent:*/false, /*readOnly*/false, /*registerEventListeners*/false); 1438if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1440textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1441textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1467if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1469textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1470textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
src\Framework\System\windows\Documents\CaretElement.cs (6)
53internal CaretElement(TextEditor textEditor, bool isBlinkEnabled) : base(textEditor.TextView.RenderScope) 644TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 778TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 779return ((ITextSelection)TextEditor._ThreadLocalStore.FocusedTextSelection).CaretElement; 788return ((ITextSelection)TextEditor._ThreadLocalStore.FocusedTextSelection).TextView.RenderScope as FrameworkElement; // TextBlock / TextFlow 1266private readonly TextEditor _textEditor;
src\Framework\System\Windows\Documents\ImmComposition.cs (6)
133internal void OnDetach(TextEditor editor) 159internal void OnGotFocus(TextEditor editor) 763view = TextEditor.GetTextView(RenderScope); 1823view = TextEditor.GetTextView(RenderScope); 2072return ((bool)UiScope.GetValue(TextEditor.IsReadOnlyProperty) || _editor.IsReadOnly); 2115private TextEditor _editor;
src\Framework\System\Windows\Documents\ITextSelection.cs (1)
160TextEditor TextEditor { get; }
src\Framework\System\Windows\Documents\Speller.cs (2)
43internal Speller(TextEditor textEditor) 2153private TextEditor _textEditor;
src\Framework\System\windows\Documents\TextEditor.cs (34)
102_uiScope.SetValue(TextEditor.InstanceProperty, this); 225_uiScope.ClearValue(TextEditor.InstanceProperty); 324TextEditor textEditor = TextEditor._GetTextEditor(frameworkElement); 815typeof(TextEditor), 835typeof(TextEditor), 845typeof(TextEditor), 1004return _uiScope == null ? false : (bool)_uiScope.GetValue(TextEditor.IsReadOnlyProperty); 1059return _uiScope == null ? true : (bool)_uiScope.GetValue(TextEditor.AllowOvertypeProperty); 1161internal static TextEditor _GetTextEditor(object element) 1163return (element is DependencyObject) ? (((DependencyObject)element).ReadLocalValue(InstanceProperty) as TextEditor) : null; 1674TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1697TextEditor This = TextEditor._GetTextEditor(frameworkElement); 1734TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1794TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1834TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1878TextEditor This = TextEditor._GetTextEditor((FrameworkElement)target); 1904TextEditor This = TextEditor._GetTextEditor((FrameworkElement)target); 1930TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1950TextEditor This = TextEditor._GetTextEditor((FrameworkElement)sender); 1985public TextEditorShutDownListener(TextEditor target) 1992TextEditor editor = (TextEditor)target; 2017"Instance", typeof(TextEditor), typeof(TextEditor), //
src\Framework\System\windows\Documents\TextEditorCharacters.cs (35)
75internal static void _OnApplyProperty(TextEditor This, DependencyProperty formattingProperty, object propertyValue) 80internal static void _OnApplyProperty(TextEditor This, DependencyProperty formattingProperty, object propertyValue, bool applyToParagraphs) 85internal static void _OnApplyProperty(TextEditor This, DependencyProperty formattingProperty, object propertyValue, bool applyToParagraphs, PropertyValueAction propertyValueAction) 138TextEditor This = TextEditor._GetTextEditor(target); 183TextEditor This = TextEditor._GetTextEditor(target); 203TextEditor This = TextEditor._GetTextEditor(target); 226TextEditor This = TextEditor._GetTextEditor(target); 255TextEditor This = TextEditor._GetTextEditor(sender); 274TextEditor This = TextEditor._GetTextEditor(sender); 302TextEditor This = TextEditor._GetTextEditor(target); 344TextEditor This = TextEditor._GetTextEditor(target); 389TextEditor This = TextEditor._GetTextEditor(target); 402TextEditor This = TextEditor._GetTextEditor(target); 415TextEditor This = TextEditor._GetTextEditor(target); 428TextEditor This = TextEditor._GetTextEditor(target); 437TextEditor This = TextEditor._GetTextEditor(target); 452TextEditor This = TextEditor._GetTextEditor(target); 461TextEditor This = TextEditor._GetTextEditor(target); 478TextEditor This = TextEditor._GetTextEditor(target);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (9)
57TextEditor This = TextEditor._GetTextEditor(sender); 255TextEditor This = TextEditor._GetTextEditor(placementTarget); 275private static void GetClippedPositionOffsets(TextEditor This, ITextPointer position, LogicalDirection direction, 455internal void AddMenuItems(TextEditor textEditor, bool userInitiated) 504private bool AddSpellerItems(TextEditor textEditor) 575private bool AddReconversionItems(TextEditor textEditor) 642private bool AddClipboardItems(TextEditor textEditor, bool userInitiated)
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (26)
94internal static DataObject _CreateDataObject(TextEditor This, bool isDragDrop) 240internal static bool _DoPaste(TextEditor This, IDataObject dataObject, bool isDragDrop) 295internal static string GetPasteApplyFormat(TextEditor This, IDataObject dataObject) 348internal static void Cut(TextEditor This, bool userInitiated) 419internal static void Copy(TextEditor This, bool userInitiated) 476internal static void Paste(TextEditor This) 608TextEditor This = TextEditor._GetTextEditor(target); 639TextEditor This = TextEditor._GetTextEditor(target); 660TextEditor This = TextEditor._GetTextEditor(target); 692TextEditor This = TextEditor._GetTextEditor(target); 713TextEditor This = TextEditor._GetTextEditor(target); 751TextEditor This = TextEditor._GetTextEditor(target); 766TextEditor This = TextEditor._GetTextEditor(target); 788TextEditor This = TextEditor._GetTextEditor(target); 848private static bool PasteContentData(TextEditor This, IDataObject dataObject, IDataObject dataObjectToApply, string formatToApply) 1061private static bool PasteTextElement(TextEditor This, TextElement sectionOrSpan) 1089private static bool PasteXaml(TextEditor This, string pasteXaml) 1124private static bool PastePlainText(TextEditor This, string pastedText)
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (17)
90internal _DragDropProcess(TextEditor textEditor) 396double pageHeight = (double)_textEditor.UiScope.GetValue(TextEditor.PageHeightProperty); 719private TextEditor _textEditor; 745TextEditor This = TextEditor._GetTextEditor(sender); 778TextEditor This = TextEditor._GetTextEditor(sender); 806TextEditor This = TextEditor._GetTextEditor(sender); 854TextEditor This = TextEditor._GetTextEditor(sender); 901TextEditor This = TextEditor._GetTextEditor(sender); 931TextEditor This = TextEditor._GetTextEditor(sender); 959TextEditor This = TextEditor._GetTextEditor(sender);
src\Framework\System\windows\Documents\TextEditorLists.cs (9)
56internal static void DecreaseIndentation(TextEditor This) 82private static TextEditor IsEnabledNotReadOnlyIsTextSegment(object sender) 84TextEditor This = TextEditor._GetTextEditor(sender); 98TextEditor This = IsEnabledNotReadOnlyIsTextSegment(sender); 113TextEditor This = TextEditor._GetTextEditor(target); 126TextEditor This = TextEditor._GetTextEditor(target);
src\Framework\System\windows\Documents\TextEditorMouse.cs (19)
78internal static void SetCaretPositionOnMouseEvent(TextEditor This, Point mouseDownPoint, MouseButton changedButton, int clickCount) 138internal static bool IsPointWithinInteractiveArea(TextEditor textEditor, Point point) 166TextEditor This = TextEditor._GetTextEditor(sender); 250if (TextEditor.IsTableEditingEnabled && TextRangeEditTables.TableBorderHitTest(This.TextView, mouseDownPoint)) 287TextEditor This = TextEditor._GetTextEditor(sender); 319TextEditor This = TextEditor._GetTextEditor(sender); 400TextEditor This = TextEditor._GetTextEditor(sender); 446private static void OnMouseMoveWithoutFocus(TextEditor This, MouseEventArgs e) 453private static void OnMouseMoveWithFocus(TextEditor This, MouseEventArgs e) 463TextEditor._ThreadLocalStore.PureControlShift = false; 610private static bool MoveFocusToUiScope(TextEditor This) 686private static void UpdateCursor(TextEditor This, Point mouseMovePoint) 694if (TextEditor.IsTableEditingEnabled && TextRangeEditTables.TableBorderHitTest(This.TextView, mouseMovePoint)) 729private static UIElement GetUIElementWhenMouseOver(TextEditor This, Point mouseMovePoint) 773private static bool IsPointWithinRenderScope(TextEditor textEditor, Point point)
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (14)
83TextEditor This = TextEditor._GetTextEditor(sender); 98TextEditor This = TextEditor._GetTextEditor(sender); 113TextEditor This = TextEditor._GetTextEditor(sender); 128TextEditor This = TextEditor._GetTextEditor(sender); 158TextEditor This = TextEditor._GetTextEditor(sender); 168TextEditor This = TextEditor._GetTextEditor(sender); 186TextEditor This = TextEditor._GetTextEditor(sender);
src\Framework\System\windows\Documents\TextEditorSelection.cs (91)
113internal static void _ClearSuggestedX(TextEditor This) 169TextEditor This = TextEditor._GetTextEditor(target); 204TextEditor This = TextEditor._GetTextEditor(target); 220TextEditor This = TextEditor._GetTextEditor(target); 236TextEditor This = TextEditor._GetTextEditor(target); 252TextEditor This = TextEditor._GetTextEditor(target); 266TextEditor This = TextEditor._GetTextEditor(sender); 358TextEditor This = TextEditor._GetTextEditor(sender); 448TextEditor This = TextEditor._GetTextEditor(sender); 503TextEditor This = TextEditor._GetTextEditor(sender); 557TextEditor This = TextEditor._GetTextEditor(sender); 598double pageHeight = (double)This.UiScope.GetValue(TextEditor.PageHeightProperty); 678TextEditor This = TextEditor._GetTextEditor(sender); 716double pageHeight = (double)This.UiScope.GetValue(TextEditor.PageHeightProperty); 795TextEditor This = TextEditor._GetTextEditor(target); 847TextEditor This = TextEditor._GetTextEditor(target); 899TextEditor This = TextEditor._GetTextEditor(target); 927TextEditor This = TextEditor._GetTextEditor(target); 963TextEditor This = TextEditor._GetTextEditor(target); 979TextEditor This = TextEditor._GetTextEditor(target); 994TextEditor This = TextEditor._GetTextEditor(target); 1010TextEditor This = TextEditor._GetTextEditor(target); 1024TextEditor This = TextEditor._GetTextEditor(sender); 1130private static void AdjustMovingPositionForSelectDownByLine(TextEditor This, ITextPointer newMovingPosition, ITextPointer originalMovingPosition, double suggestedX) 1196TextEditor This = TextEditor._GetTextEditor(sender); 1320TextEditor This = TextEditor._GetTextEditor(sender); 1361TextEditor This = TextEditor._GetTextEditor(sender); 1405TextEditor This = TextEditor._GetTextEditor(sender); 1427double pageHeight = (double)This.UiScope.GetValue(TextEditor.PageHeightProperty); 1501TextEditor This = TextEditor._GetTextEditor(sender); 1523double pageHeight = (double)This.UiScope.GetValue(TextEditor.PageHeightProperty); 1599TextEditor This = TextEditor._GetTextEditor(target); 1644TextEditor This = TextEditor._GetTextEditor(target); 1732TextEditor This = TextEditor._GetTextEditor(target); 1760TextEditor This = TextEditor._GetTextEditor(target); 1794TextEditor This = e.UserState as TextEditor; 1824TextEditor This = e.UserState as TextEditor; 1849TextEditor This; 1856This = e.UserState as TextEditor; 1912TextEditor This; 1919This = e.UserState as TextEditor; 1979TextEditor This = TextEditor._GetTextEditor(target); 1994TextEditor This = TextEditor._GetTextEditor(target); 2030private static void ClearSpringloadFormatting(TextEditor This) 2041private static bool IsFlowDirectionRightToLeftThenTopToBottom(TextEditor textEditor) 2061private static void MoveToCharacterLogicalDirection(TextEditor textEditor, LogicalDirection direction, bool extend) 2122private static void NavigateWordLogicalDirection(TextEditor textEditor, LogicalDirection direction) 2197private static void ExtendWordLogicalDirection(TextEditor textEditor, LogicalDirection direction) 2243private static Double GetSuggestedX(TextEditor This, out ITextPointer innerMovingPosition) 2291private static Double GetSuggestedYFromPosition(TextEditor This, ITextPointer position) 2307private static void UpdateSuggestedXOnColumnOrPageBoundary(TextEditor This, double newSuggestedX) 2325private static ITextPointer GetMovingPositionInner(TextEditor This) 2355private static ITextPointer GetStartInner(TextEditor This) 2367private static ITextPointer GetEndInner(TextEditor This) 2394private static void ExtendSelectionAndBringIntoView(ITextPointer position, TextEditor textEditor) 2400private static void BringIntoView(ITextPointer position, TextEditor textEditor) 2402double pageHeight = (double)textEditor.UiScope.GetValue(TextEditor.PageHeightProperty); 2416private static void AdjustCaretAtTableRowEnd(TextEditor This)
src\Framework\System\windows\Documents\TextEditorSpelling.cs (9)
39internal static SpellingError GetSpellingErrorAtPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 45internal static SpellingError GetSpellingErrorAtSelection(TextEditor This) 104internal static ITextPointer GetNextSpellingErrorPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 125TextEditor This = TextEditor._GetTextEditor(target); 227TextEditor This = TextEditor._GetTextEditor(target); 244TextEditor This = TextEditor._GetTextEditor(target);
src\Framework\System\windows\Documents\TextEditorTables.cs (4)
73TextEditor This = TextEditor._GetTextEditor(target); 129TextEditor This = TextEditor._GetTextEditor(target);
src\Framework\System\windows\Documents\TextEditorTyping.cs (73)
101internal static void _AddInputLanguageChangedEventHandler(TextEditor This) 109threadLocalStore = TextEditor._ThreadLocalStore; 128internal static void _RemoveInputLanguageChangedEventHandler(TextEditor This) 132threadLocalStore = TextEditor._ThreadLocalStore; 152internal static void _BreakTypingSequence(TextEditor This) 159internal static void _FlushPendingInputItems(TextEditor This) 168threadLocalStore = TextEditor._ThreadLocalStore; 201if (TextEditor._ThreadLocalStore.HideCursor) 203TextEditor._ThreadLocalStore.HideCursor = false; 264TextEditor This = richTextBox.TextEditor; 296TextEditor This = TextEditor._GetTextEditor(sender); 312TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 343TextEditor This = TextEditor._GetTextEditor(sender); 355if (TextEditor._ThreadLocalStore.PureControlShift && (e.KeyboardDevice.Modifiers & ModifierKeys.Alt) == 0) 372TextEditor This = TextEditor._GetTextEditor(sender); 442TextEditor This = TextEditor._GetTextEditor(target); 466TextEditor This = TextEditor._GetTextEditor(target); 494TextEditor This = TextEditor._GetTextEditor(target); 548TextEditor This = TextEditor._GetTextEditor(sender); 601TextEditor This = TextEditor._GetTextEditor(sender); 755private static bool HandleDeleteWhenStructuralBoundaryIsCrossed(TextEditor This, TextPointer position, TextPointer deletePosition) 917TextEditor This = TextEditor._GetTextEditor(sender); 975TextEditor This = TextEditor._GetTextEditor(sender); 1050TextEditor This = TextEditor._GetTextEditor(sender); 1070TextEditor This = TextEditor._GetTextEditor(sender); 1116private static bool HandleEnterBreakForRichText(TextEditor This, ICommand command) 1165private static bool HandleEnterBreakForPlainText(TextEditor This) 1187private static bool HandleEnterBreakWhenStructuralBoundaryIsCrossed(TextEditor This, ICommand command) 1240private static void OnFlowDirectionCommand(TextEditor This, Key key) 1291TextEditor This = TextEditor._GetTextEditor(sender); 1331TextEditor This = TextEditor._GetTextEditor(sender); 1347TextEditor This = TextEditor._GetTextEditor(sender); 1361TextEditor This = TextEditor._GetTextEditor(sender); 1392TextEditor This = TextEditor._GetTextEditor(sender); 1423private static bool HandleTabInTables(TextEditor This, LogicalDirection direction) 1544private static void DoTextInput(TextEditor This, string textData, bool isInsertKeyToggled, bool acceptControlCharacters) 1608private static void ScheduleInput(TextEditor This, InputItem item) 1620threadLocalStore = TextEditor._ThreadLocalStore; 1641private static bool IsMouseInputPending(TextEditor This) 1671TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 1673Invariant.Assert(This is TextEditor); 1678TextEditorTyping._FlushPendingInputItems((TextEditor)This); 1700TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 1718internal InputItem(TextEditor textEditor) 1727TextEditor _textEditor; 1729protected TextEditor TextEditor 1742internal TextInputItem(TextEditor textEditor, string text, bool isInsertKeyToggled) 1770internal KeyUpInputItem(TextEditor textEditor, Key key, ModifierKeys modifiers) 1829private static void OpenTypingUndoUnit(TextEditor This) 1854private static void CloseTypingUndoUnit(TextEditor This, UndoCloseAction closeAction) 1880TextEditor This = TextEditor._GetTextEditor(target); 1910private static void HideCursor(TextEditor This) 1912if (!TextEditor._ThreadLocalStore.HideCursor && 1916TextEditor._ThreadLocalStore.HideCursor = true; 1923private static void UpdateHyperlinkCursor(TextEditor This)
src\Framework\System\windows\Documents\TextSelection.cs (14)
45internal TextSelection(TextEditor textEditor) 1215TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 1622internal static Brush GetCaretBrush(TextEditor textEditor) 1787TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 1797if (TextEditor._ThreadLocalStore.FocusedTextSelection == this) 1799TextEditor._ThreadLocalStore.FocusedTextSelection = null; 2044private static void RefreshCaret(TextEditor textEditor, ITextSelection textSelection) 2088TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 2370private static double CalculateScrollToOriginPosition(TextEditor textEditor, ITextPointer caretPosition, double horizontalCaretPosition) 2428TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 2441TextEditor._ThreadLocalStore.Bidi = true; 2445TextEditor._ThreadLocalStore.Bidi = false; 2635TextEditor ITextSelection.TextEditor 2734private TextEditor _textEditor;
src\Framework\System\Windows\Documents\TextServicesHost.cs (2)
228TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore; 471TextEditorThreadLocalStore threadLocalStore = TextEditor._ThreadLocalStore;
src\Framework\System\Windows\Documents\TextStore.cs (7)
68internal TextStore(TextEditor textEditor) 1924internal static FrameworkTextComposition CreateComposition(TextEditor editor, object owner) 2190TextEditor textEditor = this.TextEditor; 3956private TextEditor TextEditor 3970return ((bool)this.UiScope.GetValue(TextEditor.IsReadOnlyProperty) || TextEditor.IsReadOnly); 4056internal TextEditor TextEditor 4062return (TextEditor)this.Target;