19 references to GetTextInternal
PresentationFramework (19)
MS\Internal\Annotations\TextAnchor.cs (1)
547
textBuffer.Append(TextRangeBase.
GetTextInternal
(_segments[i].Start, _segments[i].End));
System\Windows\Controls\ComboBox.cs (1)
1611
strValue += TextRangeBase.
GetTextInternal
(textElement.ContentStart, textElement.ContentEnd);
System\Windows\Controls\DeferredRunTextReference.cs (1)
43
return TextRangeBase.
GetTextInternal
(_run.ContentStart, _run.ContentEnd);
System\Windows\Controls\DeferredTextReference.cs (1)
43
string s = TextRangeBase.
GetTextInternal
(_textContainer.Start, _textContainer.End);
System\Windows\Controls\TextBlock.cs (1)
2000
return TextRangeBase.
GetTextInternal
(_complexContent.TextContainer.Start, _complexContent.TextContainer.End);
System\Windows\Controls\TextBox.cs (1)
403
text = TextRangeBase.
GetTextInternal
(startOfLine, endOfLine);
System\Windows\Controls\TextRangeAdaptor.cs (1)
1859
string text = TextRangeBase.
GetTextInternal
(_start, _end);
System\Windows\Documents\Hyperlink.cs (1)
784
return TextRangeBase.
GetTextInternal
(this.ContentStart, this.ContentEnd);
System\Windows\Documents\RubberbandSelector.cs (1)
312
text = $"{text}{TextRangeBase.
GetTextInternal
(range.first, range.second)}\r\n"; //CRLF
System\Windows\Documents\SpellerError.cs (1)
73
_speller.IgnoreAll(TextRangeBase.
GetTextInternal
(_start, _end));
System\windows\Documents\TextEditorDragDrop.cs (1)
471
string wordText = TextRangeBase.
GetTextInternal
(wordSegment.Start, wordSegment.End);
System\Windows\Documents\TextRangeBase.cs (4)
212
string autoWord = TextRangeBase.
GetTextInternal
(autoWordRange.Start, autoWordRange.End).TrimEnd(' ');
214
string textFromWordStart = TextRangeBase.
GetTextInternal
(autoWordRange.Start, thisRange.Start);
1257
return TextRangeBase.
GetTextInternal
(start, thisRange.End);
1271
text += TextRangeBase.
GetTextInternal
(textSegment.Start, textSegment.End);
System\Windows\Documents\TextRangeSerialization.cs (1)
1282
string fragmentText = TextRangeBase.
GetTextInternal
(fragment.ElementStart, fragment.ElementEnd);
System\Windows\Documents\TextStore.cs (3)
1240
_lastCompositionText = TextRangeBase.
GetTextInternal
(start, end);
1341
string compositionText = TextRangeBase.
GetTextInternal
(oldStart, oldEnd);
1405
this.CompositionEventList.Add(new CompositionEventRecord(CompositionStage.EndComposition, start.Offset, end.Offset, TextRangeBase.
GetTextInternal
(start, end)));