12 instantiations of TextCharacters
PresentationCore (6)
MS\Internal\TextFormatting\SimpleTextLine.cs (2)
1518
TextRun mergedTextRun = new
TextCharacters
(characterArray, 0, lengthOfRun, textRun.Properties);
1611
TextRun modifedTextRun = new
TextCharacters
(" ", textRun.Properties);
MS\Internal\TextFormatting\TextMarkerSource.cs (1)
151
return new
TextCharacters
(
System\Windows\Media\FormattedText.cs (1)
1859
TextCharacters textCharacters = new
TextCharacters
(_that._text,
System\Windows\Media\textformatting\TextTrailingCharacterEllipsis.cs (1)
41
_ellipsis = new
TextCharacters
(StringHorizontalEllipsis, textRunProperties);
System\Windows\Media\textformatting\TextTrailingWordEllipsis.cs (1)
41
_ellipsis = new
TextCharacters
(StringHorizontalEllipsis, textRunProperties);
PresentationFramework (6)
MS\Internal\Documents\TextBoxLine.cs (1)
487
return new
TextCharacters
(textBuffer, 0, charactersCopied, properties);
MS\Internal\PtsHost\LineBase.cs (2)
124
return new
TextCharacters
(textBuffer, 0, charactersCopied, textProps);
181
run = new
TextCharacters
(textBuffer, 0, textBuffer.Length, textProps);
MS\Internal\Text\ComplexLine.cs (2)
371
return new
TextCharacters
(textBuffer, 0, charactersCopied, textProps);
401
run = new
TextCharacters
(textBuffer, 0, textBuffer.Length, textProps);
MS\Internal\Text\SimpleLine.cs (1)
54
run = new
TextCharacters
(_content, dcp, _content.Length - dcp, _textProps);
6 references to TextCharacters
PresentationCore (4)
MS\Internal\TextFormatting\SimpleTextLine.cs (3)
1372
get { return this.TextRun is
TextCharacters
; }
1453
if (textRun is
TextCharacters
)
1662
Invariant.Assert(textRun is
TextCharacters
);
System\Windows\Media\FormattedText.cs (1)
1859
TextCharacters
textCharacters = new TextCharacters(_that._text,
PresentationFramework (2)
MS\Internal\PtsHost\Line.cs (2)
697
if (textSpan.Value is
TextCharacters
)
718
if (span.Value is
TextCharacters
)