3 instantiations of TextEffect
PresentationCore (1)
System\Windows\Media\Generated\TextEffect.cs (1)
189
return new
TextEffect
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11138
DefaultConstructor = delegate () { return new System.Windows.Media.
TextEffect
(); }
System\Windows\Markup\KnownTypes.cs (1)
1590
case KnownElements.TextEffect: o = new System.Windows.Media.
TextEffect
(); break;
79 references to TextEffect
PresentationCore (71)
MS\Internal\TextFormatting\LineServicesRun.cs (4)
30
private IList<
TextEffect
> _textEffects; // TextEffects that should be applied for this run
38
IList<
TextEffect
> textEffects,
71
IList<
TextEffect
> textEffects,
256
TextEffect
textEffect = _textEffects[i];
MS\Internal\TextFormatting\TextStore.cs (8)
502
TextEffect
effect = textEffects[i];
523
IList<
TextEffect
> activeEffects = new
TextEffect
[currentEffectsCount];
527
TextEffect
effect = textEffects[j];
1299
IList<
TextEffect
> textEffects = (IList<
TextEffect
>)textEffectsSpanRider.CurrentElement;
1492
IList<
TextEffect
> textEffects,
1650
IList<
TextEffect
> textEffects,
System\Windows\Media\Generated\TextEffect.cs (5)
44
public new
TextEffect
Clone()
46
return (
TextEffect
)base.Clone();
53
public new
TextEffect
CloneCurrentValue()
55
return (
TextEffect
)base.CloneCurrentValue();
295
Type typeofThis = typeof(
TextEffect
);
System\Windows\Media\Generated\TextEffectCollection.cs (53)
32
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
77
public void Add(
TextEffect
value)
105
public bool Contains(
TextEffect
value)
115
public int IndexOf(
TextEffect
value)
125
public void Insert(int index,
TextEffect
value)
147
public bool Remove(
TextEffect
value)
163
TextEffect
oldValue = _collection[index];
207
TextEffect
oldValue = _collection[ index ];
225
public
TextEffect
this[int index]
245
TextEffect
oldValue = _collection[ index ];
279
public void CopyTo(
TextEffect
[] array, int index)
294
bool ICollection<
TextEffect
>.IsReadOnly
318
IEnumerator<
TextEffect
> IEnumerable<
TextEffect
>.GetEnumerator()
331
return ((ICollection<
TextEffect
>)this).IsReadOnly;
366
return Contains(value as
TextEffect
);
371
return IndexOf(value as
TextEffect
);
382
Remove(value as
TextEffect
);
474
internal
TextEffect
Internal_GetItem(int i)
501
private
TextEffect
Cast(object value)
505
if (!(value is
TextEffect
))
510
return (
TextEffect
) value;
516
private int AddHelper(
TextEffect
value)
527
internal int AddWithoutFiringPublicEvents(
TextEffect
value)
536
TextEffect
newValue = value;
589
_collection = new FrugalStructList<
TextEffect
>(count);
593
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].Clone();
611
_collection = new FrugalStructList<
TextEffect
>(count);
615
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].CloneCurrentValue();
633
_collection = new FrugalStructList<
TextEffect
>(count);
637
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetAsFrozen();
655
_collection = new FrugalStructList<
TextEffect
>(count);
659
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen();
739
internal FrugalStructList<
TextEffect
> _collection;
749
public struct Enumerator : IEnumerator, IEnumerator<
TextEffect
>
760
_current = default(
TextEffect
);
840
public
TextEffect
Current
863
private
TextEffect
_current;
885
_collection = new FrugalStructList<
TextEffect
>();
894
_collection = new FrugalStructList<
TextEffect
>(capacity);
900
public TextEffectCollection(IEnumerable<
TextEffect
> collection)
911
ICollection<
TextEffect
> icollectionOfT = collection as ICollection<
TextEffect
>;
915
_collection = new FrugalStructList<
TextEffect
>(icollectionOfT);
923
_collection = new FrugalStructList<
TextEffect
>(icollection);
927
_collection = new FrugalStructList<
TextEffect
>();
929
foreach (
TextEffect
item in collection)
935
TextEffect
newValue = item;
947
foreach (
TextEffect
item in collection)
System\Windows\Media\TextEffectCollection.cs (1)
22
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
PresentationFramework (8)
System\Windows\Documents\TextEffectResolver.cs (5)
39
TextEffect
effect
50
TextEffect
effectCopy;
124
private
TextEffect
_effect;
128
TextEffect
effect
149
public
TextEffect
TextEffect
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
740
case 646: t = () => typeof(
TextEffect
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11135
typeof(System.Windows.Media.
TextEffect
),
System\Windows\Markup\KnownTypes.cs (1)
6194
case KnownElements.TextEffect: t = typeof(System.Windows.Media.
TextEffect
); break;