1 type derived from TextEndOfParagraph
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\RunClient.cs (1)
210
internal sealed class ParagraphBreakRun :
TextEndOfParagraph
5 instantiations of TextEndOfParagraph
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
170
return new
TextEndOfParagraph
(1);
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1882
return new
TextEndOfParagraph
(1);
PresentationFramework (3)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
90
run = new
TextEndOfParagraph
(_syntheticCharacterLength);
src\Framework\MS\Internal\Text\ComplexLine.cs (1)
69
run = new
TextEndOfParagraph
(_syntheticCharacterLength);
src\Framework\MS\Internal\Text\SimpleLine.cs (1)
66
run = new
TextEndOfParagraph
(_syntheticCharacterLength);
4 references to TextEndOfParagraph
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\TextMetrics.cs (1)
327
&& !(_lastRun.TextRun is
TextEndOfParagraph
))
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (1)
413
if (textRun is
TextEndOfParagraph
)
PresentationFramework (2)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
387
return (((TextSpan<TextRun>)runs[runs.Count-1]).Value is
TextEndOfParagraph
);
src\Framework\MS\Internal\Text\Line.cs (1)
429
return (((TextSpan<TextRun>)runs[runs.Count-1]).Value is
TextEndOfParagraph
);