5 implementations of GetNextInsertionPosition
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
566ITextPointer ITextPointer.GetNextInsertionPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
290ITextPointer ITextPointer.GetNextInsertionPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
368ITextPointer ITextPointer.GetNextInsertionPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
377ITextPointer ITextPointer.GetNextInsertionPosition(LogicalDirection direction)
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2506ITextPointer ITextPointer.GetNextInsertionPosition(LogicalDirection direction)
32 references to GetNextInsertionPosition
PresentationFramework (32)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (1)
843ITextPointer nextPointer = pointer.GetNextInsertionPosition(direction);
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
366/// <see cref="ITextPointer.GetNextInsertionPosition"/>
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
375/// <see cref="ITextPointer.GetNextInsertionPosition"/>
src\Framework\System\windows\Documents\TextEditor.cs (1)
1543if (cursorPosition.GetNextInsertionPosition(LogicalDirection.Forward) == null &&
src\Framework\System\windows\Documents\TextEditorMouse.cs (1)
577if (snappedCursorPosition.GetNextInsertionPosition(LogicalDirection.Forward) == null &&
src\Framework\System\windows\Documents\TextEditorSelection.cs (13)
336ITextPointer nextPosition = lineEndPosition.GetNextInsertionPosition(LogicalDirection.Forward); 426ITextPointer previousPosition = lineStartPosition.GetNextInsertionPosition(LogicalDirection.Backward); 1094ITextPointer nextPosition = lineEndPosition.GetNextInsertionPosition(LogicalDirection.Forward); 1147newMovingPosition.GetNextInsertionPosition(LogicalDirection.Forward) == null) 1157newMovingPosition = newMovingPosition.GetNextInsertionPosition(LogicalDirection.Forward); 1184if (newMovingPosition.GetNextInsertionPosition(LogicalDirection.Forward) == null) 1284ITextPointer previousPosition = lineStartPosition.GetNextInsertionPosition(LogicalDirection.Backward); 1689destination = destination.GetNextInsertionPosition(LogicalDirection.Forward); 1698ITextPointer newDestination = destination.GetNextInsertionPosition(LogicalDirection.Forward); 2085movingEnd = movingEnd.GetNextInsertionPosition(direction); 2334movingPosition = movingPosition.GetNextInsertionPosition(LogicalDirection.Backward); 2420ITextPointer position = This.Selection.Start.GetNextInsertionPosition(LogicalDirection.Backward); 2436ITextPointer cellEnd = position.GetNextInsertionPosition(LogicalDirection.Backward);
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
568ITextPointer deletePosition = position.GetNextInsertionPosition(LogicalDirection.Forward); 645ITextPointer deletePosition = position.GetNextInsertionPosition(LogicalDirection.Backward);
src\Framework\System\Windows\Documents\TextFindEngine.cs (1)
331ITextPointer nextPosition = position.GetNextInsertionPosition(direction);
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1143return (TextPointer)((ITextPointer)this).GetNextInsertionPosition(direction);
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
319ITextPointer newEnd = thisRange.End.GetNextInsertionPosition(LogicalDirection.Backward); 1433newEnd = newEnd.GetNextInsertionPosition(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
1254rangeEnd = rangeEnd.GetNextInsertionPosition(LogicalDirection.Backward);
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (1)
71TextPointer lastCellPointer = (TextPointer)range.TextSegments[0].End.GetNextInsertionPosition(LogicalDirection.Backward);
src\Framework\System\windows\Documents\TextSelection.cs (5)
664return thisSelection.MovingPosition.GetNextInsertionPosition(direction); 691position = position.GetNextInsertionPosition(position.LogicalDirection); 1769This.Start.GetNextInsertionPosition(LogicalDirection.Backward) == null && 1770This.End.GetNextInsertionPosition(LogicalDirection.Forward) == null); 2208(caretPosition.GetNextInsertionPosition(LogicalDirection.Backward) == null || //
src\Framework\System\Windows\Documents\TextStore.cs (1)
381start = start.GetNextInsertionPosition(LogicalDirection.Forward);