5 instantiations of TextEffectCollection
PresentationCore (2)
Core\CSharp\System\Windows\Media\Generated\TextEffectCollection.cs (2)
493
TextEffectCollection collection = new
TextEffectCollection
();
610
return new
TextEffectCollection
();
PresentationFramework (3)
src\Framework\System\Windows\Documents\TextEffectResolver.cs (1)
179
textEffects = new
TextEffectCollection
();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10049
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.
TextEffectCollection
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1598
case KnownElements.TextEffectCollection: o = new System.Windows.Media.
TextEffectCollection
(); break;
54 references to TextEffectCollection
PresentationCore (21)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
195
public override
TextEffectCollection
TextEffects
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (2)
295
TextEffectCollection
textEffects = (runInfo.Properties != null) ? runInfo.Properties.TextEffects : null;
508
TextEffectCollection
textEffects
Core\CSharp\System\Windows\Media\Generated\TextEffectCollection.cs (17)
67
public new
TextEffectCollection
Clone()
69
return (
TextEffectCollection
)base.Clone();
76
public new
TextEffectCollection
CloneCurrentValue()
78
return (
TextEffectCollection
)base.CloneCurrentValue();
487
internal static
TextEffectCollection
Empty
493
TextEffectCollection
collection = new TextEffectCollection();
587
private static
TextEffectCollection
s_empty;
617
TextEffectCollection
sourceTextEffectCollection = (
TextEffectCollection
) source;
639
TextEffectCollection
sourceTextEffectCollection = (
TextEffectCollection
) source;
661
TextEffectCollection
sourceTextEffectCollection = (
TextEffectCollection
) source;
683
TextEffectCollection
sourceTextEffectCollection = (
TextEffectCollection
) source;
787
internal Enumerator(
TextEffectCollection
list)
898
private
TextEffectCollection
_list;
Core\CSharp\System\Windows\Media\TextFormatting\TextRunProperties.cs (1)
84
public abstract
TextEffectCollection
TextEffects
PresentationFramework (33)
src\Framework\MS\Internal\Text\DynamicPropertyReader.cs (2)
125
internal static
TextEffectCollection
GetTextEffects(DependencyObject element)
127
return GetCollectionValue(element, TextElement.TextEffectsProperty) as
TextEffectCollection
;
src\Framework\MS\Internal\Text\TextProperties.cs (2)
100
public override
TextEffectCollection
TextEffects { get { return _textEffects; } }
344
private
TextEffectCollection
_textEffects;
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
230
public override
TextEffectCollection
TextEffects
src\Framework\System\Windows\Controls\AccessText.cs (3)
294
new FreezableDefaultValueFactory(
TextEffectCollection
.Empty),
301
public
TextEffectCollection
TextEffects
303
get { return (
TextEffectCollection
) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Controls\TextBlock.cs (3)
976
new FreezableDefaultValueFactory(
TextEffectCollection
.Empty),
982
public
TextEffectCollection
TextEffects
984
get { return (
TextEffectCollection
) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (2)
60
TextEffectCollection
effects = tp.GetValue(TextElement.TextEffectsProperty) as
TextEffectCollection
;
src\Framework\System\Windows\Documents\FlowDocument.cs (3)
328
new FreezableDefaultValueFactory(
TextEffectCollection
.Empty),
334
public
TextEffectCollection
TextEffects
336
get { return (
TextEffectCollection
) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Documents\TextEffectResolver.cs (3)
176
TextEffectCollection
textEffects = DynamicPropertyReader.GetTextEffects(_element);
203
TextEffectCollection
textEffects = DynamicPropertyReader.GetTextEffects(_element);
226
TextEffectCollection
textEffects = DynamicPropertyReader.GetTextEffects(_element);
src\Framework\System\Windows\Documents\TextElement.cs (5)
798
/// DependencyProperty for <see cref="
TextEffectCollection
" /> property.
804
typeof(
TextEffectCollection
),
807
new FreezableDefaultValueFactory(
TextEffectCollection
.Empty),
813
public
TextEffectCollection
TextEffects
815
get { return (
TextEffectCollection
) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Documents\TextSchema.cs (6)
602
else if (value2 is
TextEffectCollection
)
604
TextEffectCollection
effects2 = (
TextEffectCollection
)value2;
616
else if (value1 is
TextEffectCollection
)
618
TextEffectCollection
effects1 = (
TextEffectCollection
)value1;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
739
case 647: t = () => typeof(
TextEffectCollection
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10047
typeof(System.Windows.Media.
TextEffectCollection
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6191
case KnownElements.TextEffectCollection: t = typeof(System.Windows.Media.
TextEffectCollection
); break;