4 overrides of TextWrapping
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
333public override TextWrapping TextWrapping
PresentationFramework (3)
MS\Internal\Text\LineProperties.cs (3)
81public override TextWrapping TextWrapping { get { return _textWrapping; } } 360public override TextWrapping TextWrapping { get { return _lp.TextWrapping; } } 442public override TextWrapping TextWrapping { get { return TextWrapping.NoWrap; } }
4 references to TextWrapping
PresentationCore (3)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
267_textWrap = textParagraphProperties.TextWrapping;
MS\Internal\TextFormatting\TextProperties.cs (2)
114get { return _paragraphProperties.TextWrapping == TextWrapping.Wrap; } 119get { return _paragraphProperties.TextWrapping == TextWrapping.WrapWithOverflow || EmergencyWrap; }
PresentationFramework (1)
MS\Internal\PtsHost\TextParagraph.cs (1)
1463return StructuralCache.IsOptimalParagraphEnabled && GetLineProperties(false, 0).TextWrapping != TextWrapping.NoWrap;