31 references to End
PresentationFramework (31)
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (2)
975!(_structuralCache.TextContainer.End is TextPointer)) 982while (elementPosition == null && ((ITextPointer)searchPosition).CompareTo(_structuralCache.TextContainer.End) < 0)
src\Framework\System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (1)
81return TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null);
src\Framework\System\Windows\Controls\AccessText.cs (5)
74return new RangeContentEnumerator(TextContainer.Start, TextContainer.End); 577while (!_accessKeyLocated && navigator.CompareTo(TextContainer.End) < 0 ) 624while (navigator.CompareTo(TextContainer.End) < 0) 726TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, TextContainer.End); 728((TextPointer)TextContainer.End).InsertTextElement(run);
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (3)
128TextRange range = new TextRange(_textContainer.End, _textContainer.End); 185TextSelectionInternal.Select(_textContainer.Start, _textContainer.End);
src\Framework\System\Windows\Controls\TextBlock.cs (2)
179TextPointer endPosition = textContainer.End; 212TextPointer endPosition = textContainer.End;
src\Framework\System\Windows\Controls\TextBox.cs (9)
155this.TextContainer.End.InsertTextInRun(text); 186int maxLength = newStart.GetOffsetToPosition(TextContainer.End); 207this.TextContainer.DeleteContentInternal((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.End); 843int maxLength = TextSelectionInternal.Start.GetOffsetToPosition(TextContainer.End); 902int maxLength = newStart.GetOffsetToPosition(TextContainer.End); 1069return new RangeContentEnumerator((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.End); 1357return (TextPointer)this.TextContainer.End; 1653TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, (TextPointer)TextContainer.End); 1654TextContainer.End.InsertTextInRun(newText);
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
244/// <see cref="TextContainer.End"/>
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
213/// <see cref="TextContainer.End"/>
src\Framework\System\Windows\Documents\FlowDocument.cs (3)
198return _structuralCache.TextContainer.End; 849return new RangeContentEnumerator(_structuralCache.TextContainer.Start, _structuralCache.TextContainer.End); 1666((Block)value).RepositionWithContent(textContainer.End);
src\Framework\System\Windows\Documents\TextContainer.cs (1)
1736return this.End;
src\Framework\System\Windows\Documents\TextElementCollection.cs (1)
1008this.Parent is TextElement ? ((TextElement)this.Parent).ContentEnd : this.TextContainer.End;
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1724return TextContainer.End;
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (1)
774adjustedEnd = list.ElementEnd.TextContainer.End;