3 overrides of TextDecorations
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
144public override TextDecorationCollection TextDecorations
PresentationFramework (2)
src\Framework\MS\Internal\Text\TextProperties.cs (1)
65public override TextDecorationCollection TextDecorations { get { return _textDecorations; } }
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
210public override TextDecorationCollection TextDecorations
8 references to TextDecorations
PresentationCore (6)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (2)
105&& ((_textDecorations == null) ? textRunProperties.TextDecorations == null : _textDecorations.ValueEquals(textRunProperties.TextDecorations))
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (2)
290SetChpFormat(runProp.TextDecorations, ref lschp); 1171textDecorations = lsrun.RunProp.TextDecorations;
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
1488TextDecorationCollection textDecorations = textRun.Properties.TextDecorations;
Core\CSharp\MS\Internal\TextFormatting\TextMarkerSource.cs (1)
95defaultRunProperties.TextDecorations,
PresentationFramework (2)
src\Framework\MS\Internal\Text\LineProperties.cs (1)
83public override TextDecorationCollection TextDecorations { get { return _defaultTextProperties.TextDecorations; } }
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
111TextDecorationCollection runDecorations = properties.TextDecorations;