5 implementations of End
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
378
ITextPointer ITextContainer.
End
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
226
ITextPointer ITextContainer.
End
System\Windows\Documents\FixedTextContainer.cs (1)
195
ITextPointer ITextContainer.
End
System\Windows\Documents\NullTextContainer.cs (1)
188
ITextPointer ITextContainer.
End
System\Windows\Documents\TextContainer.cs (1)
1712
ITextPointer ITextContainer.
End
59 references to End
PresentationFramework (59)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (1)
295
if (pointer.CompareTo(pointer.TextContainer.
End
) == 0)
MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (1)
490
end = textContainer.
End
;
MS\Internal\Documents\DocumentViewerHelper.cs (5)
126
contentEnd = findToolBar.SearchUp ? textSelection.Start : textContainer.
End
;
175
contentEnd = findToolBar.SearchUp ? startPointer : textContainer.
End
;
182
contentEnd = textContainer.
End
;
202
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
210
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
MS\Internal\Documents\TextDocumentView.cs (3)
525
else if (position.TextContainer.
End
.CompareTo(position) == 0 && position.LogicalDirection == LogicalDirection.Forward)
527
contains = (position.TextContainer.
End
.CompareTo(segments[segments.Count - 1].End) == 0);
3249
ITextPointer segmentEnd = _textContainer.
End
;
MS\Internal\Documents\TextParagraphView.cs (1)
480
segments.Add(new TextSegment(_textContainer.Start, _textContainer.
End
, true));
MS\Internal\PtsHost\ContainerParagraph.cs (1)
1082
Invariant.Assert(textPointer.CompareTo(textPointer.TextContainer.
End
) == 0);
System\Windows\Automation\Peers\TextBlockAutomationPeer.cs (1)
38
peers = TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.
End
, null);
System\Windows\Controls\DeferredTextReference.cs (1)
44
string s = TextRangeBase.GetTextInternal(_textContainer.Start, _textContainer.
End
);
System\Windows\Controls\TextAdaptor.cs (3)
294
rangeEnd = rangeEnd ?? _textContainer.
End
;
613
while (position.CompareTo(_textContainer.
End
) < 0)
690
return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.
End
, _textPeer);
System\Windows\Controls\TextBlock.cs (7)
462
return (TextPointer)_complexContent.TextContainer.
End
;
1864
TextSegment textSegment = new TextSegment(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
2010
return TextRangeBase.GetTextInternal(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
3656
while (position.CompareTo((TextPointer)_complexContent.TextContainer.
End
) < 0)
3922
TextBlock.InsertTextRun(this.TextContainer.
End
, content, /*whitespacesIgnorable:*/false);
4107
((TextContainer)text._complexContent.TextContainer).DeleteContentInternal((TextPointer)text._complexContent.TextContainer.Start, (TextPointer)text._complexContent.TextContainer.
End
);
4108
InsertTextRun(text._complexContent.TextContainer.
End
, newText, /*whitespacesIgnorable:*/true);
System\Windows\Controls\TextRangeAdaptor.cs (4)
710
if (expandEnd && _end.CompareTo(_start.TextContainer.
End
) != 0)
712
_end = _start.TextContainer.
End
.CreatePointer();
956
if (position.CompareTo(GetInsertionPosition(position.TextContainer.
End
, LogicalDirection.Backward)) != 0)
958
position.MoveToPosition(position.TextContainer.
End
);
System\Windows\Documents\ChildDocumentBlock.cs (1)
149
return ChildContainer.
End
;
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
297
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
520
_end = new DocumentSequenceTextPointer(_doclistTail.PreviousBlock, _doclistTail.PreviousBlock.ChildContainer.
End
);
525
_end = new DocumentSequenceTextPointer(_doclistTail, _doclistTail.ChildContainer.
End
);
616
_end = new DocumentSequenceTextPointer(newBlock, newBlock.ChildContainer.
End
);
745
tpChildEnd = tsScan.ChildPointer.TextContainer.
End
;
1026
originalPosition.TextContainer.
End
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
894
pointer = block.ChildContainer.
End
;
1000
count += tpScan.ChildPointer.GetOffsetToPosition(tpScan.ChildPointer.TextContainer.
End
);
1073
: cdb.ChildContainer.
End
.CreatePointer(childTn.LogicalDirection)
System\Windows\Documents\FixedTextContainer.cs (2)
266
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
339
else if (fixedTextPointer.CompareTo(((ITextContainer)this).
End
) == 0)
System\Windows\Documents\FixedTextView.cs (1)
1263
return (this.End.CompareTo(this.TextContainer.
End
) == 0);
System\Windows\Documents\NullTextContainer.cs (1)
186
/// <see cref="ITextContainer.
End
"/>
System\Windows\Documents\Speller.cs (2)
293
_statusTable.MarkDirtyRange(_textEditor.TextContainer.Start, _textEditor.TextContainer.
End
);
854
debugMessage += $"Xml = {new TextRange((TextPointer)start.TextContainer.Start, (TextPointer)start.TextContainer.
End
).Xml}";
System\windows\Documents\TextEditor.cs (1)
1513
cursorPosition = this.TextContainer.
End
;
System\windows\Documents\TextEditorMouse.cs (1)
568
snappedCursorPosition = This.TextContainer.
End
;
System\windows\Documents\TextEditorSelection.cs (10)
157
This.Selection.Select(This.TextContainer.Start, This.TextContainer.
End
);
629
targetPosition = This.TextContainer.
End
;
915
This.Selection.SetCaretToPosition(This.TextContainer.
End
, LogicalDirection.Backward, /*allowStopAtLineEnd:*/false, /*allowStopNearSpace:*/false);
1139
newMovingPosition = originalMovingPosition.TextContainer.
End
;
1163
newMovingPosition = newMovingPosition.TextContainer.
End
;
1437
ExtendSelectionAndBringIntoView(targetPosition.TextContainer.
End
, This);
1457
targetPosition = This.TextContainer.
End
;
1679
destination = destination.TextContainer.
End
;
1747
ExtendSelectionAndBringIntoView(This.TextContainer.
End
, This);
1935
ExtendSelectionAndBringIntoView(e.NewPosition.TextContainer.
End
, This);
System\Windows\Documents\TextRangeBase.cs (1)
1419
newEnd = newStart.TextContainer.
End
; // set end of range to IsAfterLastParagraph position
System\windows\Documents\TextSelection.cs (2)
620
if (movingPosition.CompareTo(movingPosition.TextContainer.
End
) != 0)
622
newMovingPosition = movingPosition.TextContainer.
End
;