19 references to GetNextInsertionPosition
PresentationFramework (19)
src\Framework\System\Windows\Automation\Peers\TextElementAutomationPeer.cs (1)
135
TextPointer endPosition = textElement.ContentStart.
GetNextInsertionPosition
(LogicalDirection.Forward);
src\Framework\System\Windows\Controls\TextBox.cs (1)
475
textPointer = textPointer.
GetNextInsertionPosition
(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextPointer.cs (3)
60
/// methods - <see cref="GetNextContextPosition"/>, <see cref="
GetNextInsertionPosition
"/>, etc.</para>
70
/// <see cref="TextPointer.
GetNextInsertionPosition
"/>, <see cref="TextPointer.GetPositionAtOffset(int)"/>,
84
/// you can use <see cref="
GetNextInsertionPosition
"/> method.</para>
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (1)
769
adjustedEnd = adjustedEnd.
GetNextInsertionPosition
(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (9)
533
movingPosition = movingCell.ContentEnd.GetInsertionPosition().
GetNextInsertionPosition
(LogicalDirection.Forward);
551
movingPosition = movingPosition.
GetNextInsertionPosition
(direction);
572
return (direction == LogicalDirection.Forward) ? row.ContentEnd.
GetNextInsertionPosition
(LogicalDirection.Forward) :
573
row.ContentStart.
GetNextInsertionPosition
(LogicalDirection.Backward);
604
return (direction == LogicalDirection.Forward) ? row.ContentEnd.
GetNextInsertionPosition
(LogicalDirection.Forward) :
605
row.ContentStart.
GetNextInsertionPosition
(LogicalDirection.Backward);
789
nextInsertionPosition = nextInsertionPosition.
GetNextInsertionPosition
(LogicalDirection.Forward);
1080
TextPointer end = ((TextPointer)textSegment.End).
GetNextInsertionPosition
(LogicalDirection.Backward);
1997
TextPointer end = endCell.ContentEnd.
GetNextInsertionPosition
(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextStore.cs (4)
3340
TextPointer previousPosition = start.
GetNextInsertionPosition
(LogicalDirection.Backward);
3355
start = start.
GetNextInsertionPosition
(LogicalDirection.Backward);
3359
start = start.
GetNextInsertionPosition
(LogicalDirection.Forward);
3367
start = start.
GetNextInsertionPosition
(LogicalDirection.Forward);