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