4 overrides of DefaultTextRunProperties
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
327public override TextRunProperties DefaultTextRunProperties
PresentationFramework (3)
src\Framework\MS\Internal\Text\LineProperties.cs (3)
78public override TextRunProperties DefaultTextRunProperties { get { return _defaultTextProperties; } } 358public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } } 439public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } }
11 references to DefaultTextRunProperties
PresentationCore (10)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
266_defaultTextRunProperties = textParagraphProperties.DefaultTextRunProperties;
Core\CSharp\MS\Internal\TextFormatting\TextFormatterImp.cs (4)
479if (paragraphProperties.DefaultTextRunProperties == null) 482if (paragraphProperties.DefaultTextRunProperties.Typeface == null) 499if ( paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize < 0 500|| paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize > realMaxFontRenderingEmSize)
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
61TextRunProperties defaultRunProperties = _textParagraphProperties.DefaultTextRunProperties;
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (3)
47_emSize = TextFormatterImp.RealToIdeal(paragraphProperties.DefaultTextRunProperties.FontRenderingEmSize); 133get { return _paragraphProperties.DefaultTextRunProperties.Typeface; } 163get { return _paragraphProperties.DefaultTextRunProperties.ForegroundBrush; }
Core\CSharp\System\Windows\Media\TextFormatting\TextParagraphProperties.cs (1)
123get { return 4 * DefaultTextRunProperties.FontRenderingEmSize; }
PresentationFramework (1)
src\Framework\MS\Internal\Text\LineProperties.cs (1)
439public override TextRunProperties DefaultTextRunProperties { get { return _lp.DefaultTextRunProperties; } }