4 overrides of DefaultTextRunProperties
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
326public override TextRunProperties DefaultTextRunProperties
PresentationFramework (3)
MS\Internal\Text\LineProperties.cs (3)
75public override TextRunProperties DefaultTextRunProperties { get { return _defaultTextProperties; } } 355public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } } 436public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } }
11 references to DefaultTextRunProperties
PresentationCore (10)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
265_defaultTextRunProperties = textParagraphProperties.DefaultTextRunProperties;
MS\Internal\TextFormatting\TextFormatterImp.cs (4)
474if (paragraphProperties.DefaultTextRunProperties == null) 477if (paragraphProperties.DefaultTextRunProperties.Typeface == null) 487ArgumentOutOfRangeException.ThrowIfNegative(paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize"); 488ArgumentOutOfRangeException.ThrowIfGreaterThan(paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize, realMaxFontRenderingEmSize, "paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize");
MS\Internal\TextFormatting\TextMarkerSource.cs (1)
58TextRunProperties defaultRunProperties = _textParagraphProperties.DefaultTextRunProperties;
MS\Internal\TextFormatting\TextProperties.cs (3)
45_emSize = TextFormatterImp.RealToIdeal(paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize); 131get { return _paragraphProperties.DefaultTextRunProperties.Typeface; } 161get { return _paragraphProperties.DefaultTextRunProperties.ForegroundBrush; }
System\Windows\Media\textformatting\TextParagraphProperties.cs (1)
121get { return 4 * DefaultTextRunProperties.FontRenderingEmSize; }
PresentationFramework (1)
MS\Internal\Text\LineProperties.cs (1)
436public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } }