31 references to End
PresentationFramework (31)
MS\Internal\PtsHost\FlowDocumentPage.cs (2)
953
!(_structuralCache.TextContainer.
End
is TextPointer))
960
while (elementPosition == null && ((ITextPointer)searchPosition).CompareTo(_structuralCache.TextContainer.
End
) < 0)
System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (1)
84
return TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.
End
, null);
System\Windows\Controls\AccessText.cs (5)
74
return new RangeContentEnumerator(TextContainer.Start, TextContainer.
End
);
577
while (!_accessKeyLocated && navigator.CompareTo(TextContainer.
End
) < 0 )
623
while (navigator.CompareTo(TextContainer.
End
) < 0)
724
TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, TextContainer.
End
);
726
((TextPointer)TextContainer.
End
).InsertTextElement(run);
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
117
TextRange range = new TextRange(_textContainer.
End
, _textContainer.
End
);
162
TextSelectionInternal.Select(_textContainer.Start, _textContainer.
End
);
System\Windows\Controls\TextBlock.cs (2)
170
TextPointer endPosition = textContainer.
End
;
200
TextPointer endPosition = textContainer.
End
;
System\Windows\Controls\TextBox.cs (9)
149
this.TextContainer.
End
.InsertTextInRun(text);
173
int maxLength = newStart.GetOffsetToPosition(TextContainer.
End
);
194
this.TextContainer.DeleteContentInternal((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.
End
);
811
int maxLength = TextSelectionInternal.Start.GetOffsetToPosition(TextContainer.
End
);
867
int maxLength = newStart.GetOffsetToPosition(TextContainer.
End
);
1078
return new RangeContentEnumerator((TextPointer)this.TextContainer.Start, (TextPointer)this.TextContainer.
End
);
1365
return (TextPointer)this.TextContainer.
End
;
1660
TextContainer.DeleteContentInternal((TextPointer)TextContainer.Start, (TextPointer)TextContainer.
End
);
1661
TextContainer.
End
.InsertTextInRun(newText);
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
240
/// <see cref="TextContainer.
End
"/>
System\Windows\Documents\FixedTextContainer.cs (1)
209
/// <see cref="TextContainer.
End
"/>
System\Windows\Documents\FlowDocument.cs (3)
190
return _structuralCache.TextContainer.
End
;
841
return new RangeContentEnumerator(_structuralCache.TextContainer.Start, _structuralCache.TextContainer.
End
);
1654
((Block)value).RepositionWithContent(textContainer.
End
);
System\Windows\Documents\TextContainer.cs (1)
1721
return this.
End
;
System\Windows\Documents\TextElementCollection.cs (1)
975
this.Parent is TextElement ? ((TextElement)this.Parent).ContentEnd : this.TextContainer.
End
;
System\Windows\Documents\TextPointer.cs (1)
1710
return TextContainer.
End
;
System\Windows\Documents\TextRangeEditLists.cs (1)
772
adjustedEnd = list.ElementEnd.TextContainer.
End
;