4 overrides of TextWrapping
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
336public override TextWrapping TextWrapping
PresentationFramework (3)
MS\Internal\Text\LineProperties.cs (3)
86public override TextWrapping TextWrapping { get { return _textWrapping; } } 365public override TextWrapping TextWrapping { get { return _lp.TextWrapping; } } 447public override TextWrapping TextWrapping { get { return TextWrapping.NoWrap; } }
4 references to TextWrapping
PresentationCore (3)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
270_textWrap = textParagraphProperties.TextWrapping;
MS\Internal\TextFormatting\TextProperties.cs (2)
121get { return _paragraphProperties.TextWrapping == TextWrapping.Wrap; } 126get { return _paragraphProperties.TextWrapping == TextWrapping.WrapWithOverflow || EmergencyWrap; }
PresentationFramework (1)
MS\Internal\PtsHost\TextParagraph.cs (1)
1493return StructuralCache.IsOptimalParagraphEnabled && GetLineProperties(false, 0).TextWrapping != TextWrapping.NoWrap;