21 references to LogicalDirection
PresentationFramework (21)
System\Windows\Controls\FlowDocumentReader.cs (1)
1976cpDirection = contentPosition.LogicalDirection;
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1905cpDirection = contentPosition.LogicalDirection;
System\Windows\Controls\RichTextBox.cs (3)
225return this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 244SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection); 578Selection.SetCaretToPosition(value, value.LogicalDirection, /*allowStopAtLineEnd:*/true, /*allowStopNearSpace:*/false);
System\Windows\Controls\SinglePageViewer.cs (1)
1539cpDirection = contentPosition.LogicalDirection;
System\Windows\Controls\TextBox.cs (4)
215return (textPointer.LogicalDirection == LogicalDirection.Backward) ? offset - 1 : offset; 1413rect = TextPointerBase.GetCharacterRect(position, position.LogicalDirection, relativeToTextBox); 1443textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1472textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Documents\TextContainer.cs (1)
1585if (!_rootNode.CaretUnitBoundaryCache && position.LogicalDirection == LogicalDirection.Backward)
System\Windows\Documents\TextPointer.cs (5)
39/// <see cref="TextPointer.LogicalDirection"/> property.</para> 869return GetPositionAtOffset(offset, this.LogicalDirection); 2558return ((ITextPointer)this).CreatePointer(0, this.LogicalDirection); 2571return ((ITextPointer)this).CreatePointer(offset, this.LogicalDirection); 3676return this.LogicalDirection;
System\Windows\Documents\TextRangeEditTables.cs (3)
715position = position.GetInsertionPosition(position.LogicalDirection); 909insertionPosition = implicitRun.ContentStart.GetFrozenPointer(position.LogicalDirection); // return a position with the same orientation inside a Run 924insertionPosition = implicitRun.ContentStart.GetFrozenPointer(position.LogicalDirection); // return a position with the same orientation inside a Run
System\windows\Documents\TextSelection.cs (2)
1534Invariant.Assert(this.Start.LogicalDirection == LogicalDirection.Backward); 1535Invariant.Assert(this.End.LogicalDirection == LogicalDirection.Forward);