12 instantiations of TextCharacters
PresentationCore (6)
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (2)
1541TextRun mergedTextRun = new TextCharacters(characterArray, 0, lengthOfRun, textRun.Properties); 1635TextRun modifedTextRun = new TextCharacters(" ", textRun.Properties);
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
160return new TextCharacters(
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1892TextCharacters textCharacters = new TextCharacters(_that._text,
Core\CSharp\System\Windows\Media\TextFormatting\TextTrailingCharacterEllipsis.cs (1)
49_ellipsis = new TextCharacters(StringHorizontalEllipsis, textRunProperties);
Core\CSharp\System\Windows\Media\TextFormatting\TextTrailingWordEllipsis.cs (1)
49_ellipsis = new TextCharacters(StringHorizontalEllipsis, textRunProperties);
PresentationFramework (6)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
496return new TextCharacters(textBuffer, 0, charactersCopied, properties);
src\Framework\MS\Internal\PtsHost\LineBase.cs (2)
134return new TextCharacters(textBuffer, 0, charactersCopied, textProps); 192run = new TextCharacters(textBuffer, 0, textBuffer.Length, textProps);
src\Framework\MS\Internal\Text\ComplexLine.cs (2)
381return new TextCharacters(textBuffer, 0, charactersCopied, textProps); 412run = new TextCharacters(textBuffer, 0, textBuffer.Length, textProps);
src\Framework\MS\Internal\Text\SimpleLine.cs (1)
62run = new TextCharacters(_content, dcp, _content.Length - dcp, _textProps);
6 references to TextCharacters
PresentationCore (4)
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (3)
1395get { return this.TextRun is TextCharacters; } 1476if (textRun is TextCharacters) 1686Invariant.Assert(textRun is TextCharacters);
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1892TextCharacters textCharacters = new TextCharacters(_that._text,
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\Line.cs (2)
706if (textSpan.Value is TextCharacters) 727if (span.Value is TextCharacters)