31 references to End
PresentationFramework (31)
MS\Internal\PtsHost\FlowDocumentPage.cs (2)
938!(_structuralCache.TextContainer.End is not null)) 945while (elementPosition == null && ((ITextPointer)searchPosition).CompareTo(_structuralCache.TextContainer.End) < 0)
System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (1)
72return TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null);
System\Windows\Controls\AccessText.cs (5)
71return new RangeContentEnumerator(TextContainer.Start, TextContainer.End); 576while (!_accessKeyLocated && navigator.CompareTo(TextContainer.End) < 0 ) 624while (navigator.CompareTo(TextContainer.End) < 0) 725TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, TextContainer.End); 727((TextPointer)TextContainer.End).InsertTextElement(run);
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
107TextRange range = new TextRange(_textContainer.End, _textContainer.End) 154TextSelectionInternal.Select(_textContainer.Start, _textContainer.End);
System\Windows\Controls\TextBlock.cs (2)
157TextPointer endPosition = textContainer.End; 187TextPointer endPosition = textContainer.End;
System\Windows\Controls\TextBox.cs (9)
143this.TextContainer.End.InsertTextInRun(text); 167int maxLength = newStart.GetOffsetToPosition(TextContainer.End); 188this.TextContainer.DeleteContentInternal((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.End); 805int maxLength = TextSelectionInternal.Start.GetOffsetToPosition(TextContainer.End); 861int maxLength = newStart.GetOffsetToPosition(TextContainer.End); 1072return new RangeContentEnumerator((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.End); 1359return (TextPointer)this.TextContainer.End; 1654TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, (TextPointer)TextContainer.End); 1655TextContainer.End.InsertTextInRun(newText);
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
223/// <see cref="TextContainer.End"/>
System\Windows\Documents\FixedTextContainer.cs (1)
192/// <see cref="TextContainer.End"/>
System\Windows\Documents\FlowDocument.cs (3)
189return _structuralCache.TextContainer.End; 837return new RangeContentEnumerator(_structuralCache.TextContainer.Start, _structuralCache.TextContainer.End); 1641((Block)value).RepositionWithContent(textContainer.End);
System\Windows\Documents\TextContainer.cs (1)
1709return this.End;
System\Windows\Documents\TextElementCollection.cs (1)
972this.Parent is TextElement ? ((TextElement)this.Parent).ContentEnd : this.TextContainer.End;
System\Windows\Documents\TextPointer.cs (1)
1704return TextContainer.End;
System\Windows\Documents\TextRangeEditLists.cs (1)
771adjustedEnd = list.ElementEnd.TextContainer.End;