4 overrides of TextWrapping
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
337public override TextWrapping TextWrapping
PresentationFramework (3)
src\Framework\MS\Internal\Text\LineProperties.cs (3)
89public override TextWrapping TextWrapping { get { return _textWrapping; } } 368public override TextWrapping TextWrapping { get { return _lp.TextWrapping; } } 450public override TextWrapping TextWrapping { get { return TextWrapping.NoWrap; } }
4 references to TextWrapping
PresentationCore (3)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
271_textWrap = textParagraphProperties.TextWrapping;
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (2)
123get { return _paragraphProperties.TextWrapping == TextWrapping.Wrap; } 128get { return _paragraphProperties.TextWrapping == TextWrapping.WrapWithOverflow || EmergencyWrap; }
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\TextParagraph.cs (1)
1501return StructuralCache.IsOptimalParagraphEnabled && GetLineProperties(false, 0).TextWrapping != TextWrapping.NoWrap;