5 implementations of End
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
377
ITextPointer ITextContainer.
End
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
225
ITextPointer ITextContainer.
End
System\Windows\Documents\FixedTextContainer.cs (1)
194
ITextPointer ITextContainer.
End
System\Windows\Documents\NullTextContainer.cs (1)
187
ITextPointer ITextContainer.
End
System\Windows\Documents\TextContainer.cs (1)
1705
ITextPointer ITextContainer.
End
59 references to End
PresentationFramework (59)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (1)
294
if (pointer.CompareTo(pointer.TextContainer.
End
) == 0)
MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (1)
489
end = textContainer.
End
;
MS\Internal\Documents\DocumentViewerHelper.cs (5)
125
contentEnd = findToolBar.SearchUp ? textSelection.Start : textContainer.
End
;
174
contentEnd = findToolBar.SearchUp ? startPointer : textContainer.
End
;
181
contentEnd = textContainer.
End
;
201
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
209
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
MS\Internal\Documents\TextDocumentView.cs (3)
524
else if (position.TextContainer.
End
.CompareTo(position) == 0 && position.LogicalDirection == LogicalDirection.Forward)
526
contains = (position.TextContainer.
End
.CompareTo(segments[segments.Count - 1].End) == 0);
3239
ITextPointer segmentEnd = _textContainer.
End
;
MS\Internal\Documents\TextParagraphView.cs (1)
479
segments.Add(new TextSegment(_textContainer.Start, _textContainer.
End
, true));
MS\Internal\PtsHost\ContainerParagraph.cs (1)
1078
Invariant.Assert(textPointer.CompareTo(textPointer.TextContainer.
End
) == 0);
System\Windows\Automation\Peers\TextBlockAutomationPeer.cs (1)
37
peers = TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.
End
, null);
System\Windows\Controls\DeferredTextReference.cs (1)
43
string s = TextRangeBase.GetTextInternal(_textContainer.Start, _textContainer.
End
);
System\Windows\Controls\TextAdaptor.cs (3)
287
rangeEnd ??= _textContainer.
End
;
606
while (position.CompareTo(_textContainer.
End
) < 0)
683
return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.
End
, _textPeer);
System\Windows\Controls\TextBlock.cs (7)
461
return (TextPointer)_complexContent.TextContainer.
End
;
1857
TextSegment textSegment = new TextSegment(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
2000
return TextRangeBase.GetTextInternal(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
3646
while (position.CompareTo((TextPointer)_complexContent.TextContainer.
End
) < 0)
3912
TextBlock.InsertTextRun(this.TextContainer.
End
, content, /*whitespacesIgnorable:*/false);
4097
((TextContainer)text._complexContent.TextContainer).DeleteContentInternal((TextPointer)text._complexContent.TextContainer.Start, (TextPointer)text._complexContent.TextContainer.
End
);
4098
InsertTextRun(text._complexContent.TextContainer.
End
, newText, /*whitespacesIgnorable:*/true);
System\Windows\Controls\TextRangeAdaptor.cs (4)
709
if (expandEnd && _end.CompareTo(_start.TextContainer.
End
) != 0)
711
_end = _start.TextContainer.
End
.CreatePointer();
955
if (position.CompareTo(GetInsertionPosition(position.TextContainer.
End
, LogicalDirection.Backward)) != 0)
957
position.MoveToPosition(position.TextContainer.
End
);
System\Windows\Documents\ChildDocumentBlock.cs (1)
148
return ChildContainer.
End
;
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
296
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
519
_end = new DocumentSequenceTextPointer(_doclistTail.PreviousBlock, _doclistTail.PreviousBlock.ChildContainer.
End
);
524
_end = new DocumentSequenceTextPointer(_doclistTail, _doclistTail.ChildContainer.
End
);
615
_end = new DocumentSequenceTextPointer(newBlock, newBlock.ChildContainer.
End
);
744
tpChildEnd = tsScan.ChildPointer.TextContainer.
End
;
1025
originalPosition.TextContainer.
End
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
893
pointer = block.ChildContainer.
End
;
999
count += tpScan.ChildPointer.GetOffsetToPosition(tpScan.ChildPointer.TextContainer.
End
);
1072
: cdb.ChildContainer.
End
.CreatePointer(childTn.LogicalDirection)
System\Windows\Documents\FixedTextContainer.cs (2)
265
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
338
else if (fixedTextPointer.CompareTo(((ITextContainer)this).
End
) == 0)
System\Windows\Documents\FixedTextView.cs (1)
1256
return (this.End.CompareTo(this.TextContainer.
End
) == 0);
System\Windows\Documents\NullTextContainer.cs (1)
185
/// <see cref="ITextContainer.
End
"/>
System\Windows\Documents\Speller.cs (2)
292
_statusTable.MarkDirtyRange(_textEditor.TextContainer.Start, _textEditor.TextContainer.
End
);
850
debugMessage += $"Xml = {new TextRange((TextPointer)start.TextContainer.Start, (TextPointer)start.TextContainer.
End
).Xml}";
System\windows\Documents\TextEditor.cs (1)
1503
cursorPosition = this.TextContainer.
End
;
System\windows\Documents\TextEditorMouse.cs (1)
564
snappedCursorPosition = This.TextContainer.
End
;
System\windows\Documents\TextEditorSelection.cs (10)
156
This.Selection.Select(This.TextContainer.Start, This.TextContainer.
End
);
628
targetPosition = This.TextContainer.
End
;
914
This.Selection.SetCaretToPosition(This.TextContainer.
End
, LogicalDirection.Backward, /*allowStopAtLineEnd:*/false, /*allowStopNearSpace:*/false);
1138
newMovingPosition = originalMovingPosition.TextContainer.
End
;
1162
newMovingPosition = newMovingPosition.TextContainer.
End
;
1436
ExtendSelectionAndBringIntoView(targetPosition.TextContainer.
End
, This);
1456
targetPosition = This.TextContainer.
End
;
1678
destination = destination.TextContainer.
End
;
1746
ExtendSelectionAndBringIntoView(This.TextContainer.
End
, This);
1934
ExtendSelectionAndBringIntoView(e.NewPosition.TextContainer.
End
, This);
System\Windows\Documents\TextRangeBase.cs (1)
1418
newEnd = newStart.TextContainer.
End
; // set end of range to IsAfterLastParagraph position
System\windows\Documents\TextSelection.cs (2)
607
if (movingPosition.CompareTo(movingPosition.TextContainer.
End
) != 0)
609
newMovingPosition = movingPosition.TextContainer.
End
;