5 implementations of End
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
381
ITextPointer ITextContainer.
End
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
242
ITextPointer ITextContainer.
End
System\Windows\Documents\FixedTextContainer.cs (1)
211
ITextPointer ITextContainer.
End
System\Windows\Documents\NullTextContainer.cs (1)
192
ITextPointer ITextContainer.
End
System\Windows\Documents\TextContainer.cs (1)
1717
ITextPointer ITextContainer.
End
59 references to End
PresentationFramework (59)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (1)
304
if (pointer.CompareTo(pointer.TextContainer.
End
) == 0)
MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (1)
500
end = textContainer.
End
;
MS\Internal\Documents\DocumentViewerHelper.cs (5)
128
contentEnd = findToolBar.SearchUp ? textSelection.Start : textContainer.
End
;
177
contentEnd = findToolBar.SearchUp ? startPointer : textContainer.
End
;
184
contentEnd = textContainer.
End
;
204
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
212
contentEnd = findToolBar.SearchUp ? textContainer.Start : textContainer.
End
;
MS\Internal\Documents\TextDocumentView.cs (3)
528
else if (position.TextContainer.
End
.CompareTo(position) == 0 && position.LogicalDirection == LogicalDirection.Forward)
530
contains = (position.TextContainer.
End
.CompareTo(segments[segments.Count - 1].End) == 0);
3286
ITextPointer segmentEnd = _textContainer.
End
;
MS\Internal\Documents\TextParagraphView.cs (1)
486
segments.Add(new TextSegment(_textContainer.Start, _textContainer.
End
, true));
MS\Internal\PtsHost\ContainerParagraph.cs (1)
1102
Invariant.Assert(textPointer.CompareTo(textPointer.TextContainer.
End
) == 0);
System\Windows\Automation\Peers\TextBlockAutomationPeer.cs (1)
40
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)
297
rangeEnd = rangeEnd ?? _textContainer.
End
;
616
while (position.CompareTo(_textContainer.
End
) < 0)
693
return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.
End
, _textPeer);
System\Windows\Controls\TextBlock.cs (7)
474
return (TextPointer)_complexContent.TextContainer.
End
;
1876
TextSegment textSegment = new TextSegment(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
2022
return TextRangeBase.GetTextInternal(_complexContent.TextContainer.Start, _complexContent.TextContainer.
End
);
3666
while (position.CompareTo((TextPointer)_complexContent.TextContainer.
End
) < 0)
3932
TextBlock.InsertTextRun(this.TextContainer.
End
, content, /*whitespacesIgnorable:*/false);
4117
((TextContainer)text._complexContent.TextContainer).DeleteContentInternal((TextPointer)text._complexContent.TextContainer.Start, (TextPointer)text._complexContent.TextContainer.
End
);
4118
InsertTextRun(text._complexContent.TextContainer.
End
, newText, /*whitespacesIgnorable:*/true);
System\Windows\Controls\TextRangeAdaptor.cs (4)
712
if (expandEnd && _end.CompareTo(_start.TextContainer.
End
) != 0)
714
_end = _start.TextContainer.
End
.CreatePointer();
958
if (position.CompareTo(GetInsertionPosition(position.TextContainer.
End
, LogicalDirection.Backward)) != 0)
960
position.MoveToPosition(position.TextContainer.
End
);
System\Windows\Documents\ChildDocumentBlock.cs (1)
152
return ChildContainer.
End
;
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
313
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
537
_end = new DocumentSequenceTextPointer(_doclistTail.PreviousBlock, _doclistTail.PreviousBlock.ChildContainer.
End
);
542
_end = new DocumentSequenceTextPointer(_doclistTail, _doclistTail.ChildContainer.
End
);
633
_end = new DocumentSequenceTextPointer(newBlock, newBlock.ChildContainer.
End
);
762
tpChildEnd = tsScan.ChildPointer.TextContainer.
End
;
1043
originalPosition.TextContainer.
End
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
903
pointer = block.ChildContainer.
End
;
1009
count += tpScan.ChildPointer.GetOffsetToPosition(tpScan.ChildPointer.TextContainer.
End
);
1082
: cdb.ChildContainer.
End
.CreatePointer(childTn.LogicalDirection)
System\Windows\Documents\FixedTextContainer.cs (2)
282
return ((ITextContainer)this).Start.GetOffsetToPosition(((ITextContainer)this).
End
);
356
else if (fixedTextPointer.CompareTo(((ITextContainer)this).
End
) == 0)
System\Windows\Documents\FixedTextView.cs (1)
1276
return (this.End.CompareTo(this.TextContainer.
End
) == 0);
System\Windows\Documents\NullTextContainer.cs (1)
190
/// <see cref="ITextContainer.
End
"/>
System\Windows\Documents\Speller.cs (2)
297
_statusTable.MarkDirtyRange(_textEditor.TextContainer.Start, _textEditor.TextContainer.
End
);
858
debugMessage += $"Xml = {new TextRange((TextPointer)start.TextContainer.Start, (TextPointer)start.TextContainer.
End
).Xml}";
System\windows\Documents\TextEditor.cs (1)
1522
cursorPosition = this.TextContainer.
End
;
System\windows\Documents\TextEditorMouse.cs (1)
582
snappedCursorPosition = This.TextContainer.
End
;
System\windows\Documents\TextEditorSelection.cs (10)
172
This.Selection.Select(This.TextContainer.Start, This.TextContainer.
End
);
644
targetPosition = This.TextContainer.
End
;
930
This.Selection.SetCaretToPosition(This.TextContainer.
End
, LogicalDirection.Backward, /*allowStopAtLineEnd:*/false, /*allowStopNearSpace:*/false);
1154
newMovingPosition = originalMovingPosition.TextContainer.
End
;
1178
newMovingPosition = newMovingPosition.TextContainer.
End
;
1452
ExtendSelectionAndBringIntoView(targetPosition.TextContainer.
End
, This);
1472
targetPosition = This.TextContainer.
End
;
1694
destination = destination.TextContainer.
End
;
1762
ExtendSelectionAndBringIntoView(This.TextContainer.
End
, This);
1950
ExtendSelectionAndBringIntoView(e.NewPosition.TextContainer.
End
, This);
System\Windows\Documents\TextRangeBase.cs (1)
1422
newEnd = newStart.TextContainer.
End
; // set end of range to IsAfterLastParagraph position
System\windows\Documents\TextSelection.cs (2)
623
if (movingPosition.CompareTo(movingPosition.TextContainer.
End
) != 0)
625
newMovingPosition = movingPosition.TextContainer.
End
;