3 instantiations of TextEffect
PresentationCore (1)
System\Windows\Media\Generated\TextEffect.cs (1)
186
return new
TextEffect
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11137
DefaultConstructor = delegate () { return new System.Windows.Media.
TextEffect
(); }
System\Windows\Markup\KnownTypes.cs (1)
1589
case KnownElements.TextEffect: o = new System.Windows.Media.
TextEffect
(); break;
79 references to TextEffect
PresentationCore (71)
MS\Internal\TextFormatting\LineServicesRun.cs (4)
29
private IList<
TextEffect
> _textEffects; // TextEffects that should be applied for this run
37
IList<
TextEffect
> textEffects,
70
IList<
TextEffect
> textEffects,
255
TextEffect
textEffect = _textEffects[i];
MS\Internal\TextFormatting\TextStore.cs (8)
501
TextEffect
effect = textEffects[i];
522
IList<
TextEffect
> activeEffects = new
TextEffect
[currentEffectsCount];
526
TextEffect
effect = textEffects[j];
1298
IList<
TextEffect
> textEffects = (IList<
TextEffect
>)textEffectsSpanRider.CurrentElement;
1491
IList<
TextEffect
> textEffects,
1649
IList<
TextEffect
> textEffects,
System\Windows\Media\Generated\TextEffect.cs (5)
41
public new
TextEffect
Clone()
43
return (
TextEffect
)base.Clone();
50
public new
TextEffect
CloneCurrentValue()
52
return (
TextEffect
)base.CloneCurrentValue();
292
Type typeofThis = typeof(
TextEffect
);
System\Windows\Media\Generated\TextEffectCollection.cs (53)
31
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
76
public void Add(
TextEffect
value)
104
public bool Contains(
TextEffect
value)
114
public int IndexOf(
TextEffect
value)
124
public void Insert(int index,
TextEffect
value)
146
public bool Remove(
TextEffect
value)
162
TextEffect
oldValue = _collection[index];
206
TextEffect
oldValue = _collection[ index ];
224
public
TextEffect
this[int index]
244
TextEffect
oldValue = _collection[ index ];
278
public void CopyTo(
TextEffect
[] array, int index)
293
bool ICollection<
TextEffect
>.IsReadOnly
317
IEnumerator<
TextEffect
> IEnumerable<
TextEffect
>.GetEnumerator()
330
return ((ICollection<
TextEffect
>)this).IsReadOnly;
365
return Contains(value as
TextEffect
);
370
return IndexOf(value as
TextEffect
);
381
Remove(value as
TextEffect
);
473
internal
TextEffect
Internal_GetItem(int i)
500
private
TextEffect
Cast(object value)
504
if (!(value is
TextEffect
))
509
return (
TextEffect
) value;
515
private int AddHelper(
TextEffect
value)
526
internal int AddWithoutFiringPublicEvents(
TextEffect
value)
535
TextEffect
newValue = value;
588
_collection = new FrugalStructList<
TextEffect
>(count);
592
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].Clone();
610
_collection = new FrugalStructList<
TextEffect
>(count);
614
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].CloneCurrentValue();
632
_collection = new FrugalStructList<
TextEffect
>(count);
636
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetAsFrozen();
654
_collection = new FrugalStructList<
TextEffect
>(count);
658
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen();
738
internal FrugalStructList<
TextEffect
> _collection;
748
public struct Enumerator : IEnumerator, IEnumerator<
TextEffect
>
759
_current = default(
TextEffect
);
839
public
TextEffect
Current
862
private
TextEffect
_current;
884
_collection = new FrugalStructList<
TextEffect
>();
893
_collection = new FrugalStructList<
TextEffect
>(capacity);
899
public TextEffectCollection(IEnumerable<
TextEffect
> collection)
910
ICollection<
TextEffect
> icollectionOfT = collection as ICollection<
TextEffect
>;
914
_collection = new FrugalStructList<
TextEffect
>(icollectionOfT);
922
_collection = new FrugalStructList<
TextEffect
>(icollection);
926
_collection = new FrugalStructList<
TextEffect
>();
928
foreach (
TextEffect
item in collection)
934
TextEffect
newValue = item;
946
foreach (
TextEffect
item in collection)
System\Windows\Media\TextEffectCollection.cs (1)
21
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
PresentationFramework (8)
System\Windows\Documents\TextEffectResolver.cs (5)
38
TextEffect
effect
49
TextEffect
effectCopy;
123
private
TextEffect
_effect;
127
TextEffect
effect
148
public
TextEffect
TextEffect
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
739
case 646: t = () => typeof(
TextEffect
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11134
typeof(System.Windows.Media.
TextEffect
),
System\Windows\Markup\KnownTypes.cs (1)
6193
case KnownElements.TextEffect: t = typeof(System.Windows.Media.
TextEffect
); break;