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