19 references to GetTextInternal
PresentationFramework (19)
MS\Internal\Annotations\TextAnchor.cs (1)
551
textBuffer.Append(TextRangeBase.
GetTextInternal
(_segments[i].Start, _segments[i].End));
System\Windows\Controls\ComboBox.cs (1)
1624
strValue += TextRangeBase.
GetTextInternal
(textElement.ContentStart, textElement.ContentEnd);
System\Windows\Controls\DeferredRunTextReference.cs (1)
44
return TextRangeBase.
GetTextInternal
(_run.ContentStart, _run.ContentEnd);
System\Windows\Controls\DeferredTextReference.cs (1)
44
string s = TextRangeBase.
GetTextInternal
(_textContainer.Start, _textContainer.End);
System\Windows\Controls\TextBlock.cs (1)
2022
return TextRangeBase.
GetTextInternal
(_complexContent.TextContainer.Start, _complexContent.TextContainer.End);
System\Windows\Controls\TextBox.cs (1)
409
text = TextRangeBase.
GetTextInternal
(startOfLine, endOfLine);
System\Windows\Controls\TextRangeAdaptor.cs (1)
1862
string text = TextRangeBase.
GetTextInternal
(_start, _end);
System\Windows\Documents\Hyperlink.cs (1)
790
return TextRangeBase.
GetTextInternal
(this.ContentStart, this.ContentEnd);
System\Windows\Documents\RubberbandSelector.cs (1)
324
text = $"{text}{TextRangeBase.
GetTextInternal
(range.first, range.second)}\r\n"; //CRLF
System\Windows\Documents\SpellerError.cs (1)
76
_speller.IgnoreAll(TextRangeBase.
GetTextInternal
(_start, _end));
System\windows\Documents\TextEditorDragDrop.cs (1)
489
string wordText = TextRangeBase.
GetTextInternal
(wordSegment.Start, wordSegment.End);
System\Windows\Documents\TextRangeBase.cs (4)
216
string autoWord = TextRangeBase.
GetTextInternal
(autoWordRange.Start, autoWordRange.End).TrimEnd(' ');
218
string textFromWordStart = TextRangeBase.
GetTextInternal
(autoWordRange.Start, thisRange.Start);
1261
return TextRangeBase.
GetTextInternal
(start, thisRange.End);
1275
text += TextRangeBase.
GetTextInternal
(textSegment.Start, textSegment.End);
System\Windows\Documents\TextRangeSerialization.cs (1)
1289
string fragmentText = TextRangeBase.
GetTextInternal
(fragment.ElementStart, fragment.ElementEnd);
System\Windows\Documents\TextStore.cs (3)
1255
_lastCompositionText = TextRangeBase.
GetTextInternal
(start, end);
1356
string compositionText = TextRangeBase.
GetTextInternal
(oldStart, oldEnd);
1420
this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.
GetTextInternal
(start, end)));