3 instantiations of TextEffect
PresentationCore (1)
System\Windows\Media\Generated\TextEffect.cs (1)
202
return new
TextEffect
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10041
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.
TextEffect
(); };
System\Windows\Markup\KnownTypes.cs (1)
1596
case KnownElements.TextEffect: o = new System.Windows.Media.
TextEffect
(); break;
79 references to TextEffect
PresentationCore (71)
MS\Internal\TextFormatting\LineServicesRun.cs (4)
44
private IList<
TextEffect
> _textEffects; // TextEffects that should be applied for this run
52
IList<
TextEffect
> textEffects,
85
IList<
TextEffect
> textEffects,
270
TextEffect
textEffect = _textEffects[i];
MS\Internal\TextFormatting\TextStore.cs (8)
517
TextEffect
effect = textEffects[i];
538
IList<
TextEffect
> activeEffects = new
TextEffect
[currentEffectsCount];
542
TextEffect
effect = textEffects[j];
1314
IList<
TextEffect
> textEffects = (IList<
TextEffect
>)textEffectsSpanRider.CurrentElement;
1507
IList<
TextEffect
> textEffects,
1665
IList<
TextEffect
> textEffects,
System\Windows\Media\Generated\TextEffect.cs (5)
59
public new
TextEffect
Clone()
61
return (
TextEffect
)base.Clone();
68
public new
TextEffect
CloneCurrentValue()
70
return (
TextEffect
)base.CloneCurrentValue();
309
Type typeofThis = typeof(
TextEffect
);
System\Windows\Media\Generated\TextEffectCollection.cs (53)
50
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
95
public void Add(
TextEffect
value)
123
public bool Contains(
TextEffect
value)
133
public int IndexOf(
TextEffect
value)
143
public void Insert(int index,
TextEffect
value)
165
public bool Remove(
TextEffect
value)
181
TextEffect
oldValue = _collection[index];
225
TextEffect
oldValue = _collection[ index ];
243
public
TextEffect
this[int index]
262
TextEffect
oldValue = _collection[ index ];
294
public void CopyTo(
TextEffect
[] array, int index)
309
bool ICollection<
TextEffect
>.IsReadOnly
333
IEnumerator<
TextEffect
> IEnumerable<
TextEffect
>.GetEnumerator()
346
return ((ICollection<
TextEffect
>)this).IsReadOnly;
381
return Contains(value as
TextEffect
);
386
return IndexOf(value as
TextEffect
);
397
Remove(value as
TextEffect
);
489
internal
TextEffect
Internal_GetItem(int i)
516
private
TextEffect
Cast(object value)
520
if (!(value is
TextEffect
))
525
return (
TextEffect
) value;
531
private int AddHelper(
TextEffect
value)
542
internal int AddWithoutFiringPublicEvents(
TextEffect
value)
551
TextEffect
newValue = value;
604
_collection = new FrugalStructList<
TextEffect
>(count);
608
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].Clone();
624
_collection = new FrugalStructList<
TextEffect
>(count);
628
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].CloneCurrentValue();
644
_collection = new FrugalStructList<
TextEffect
>(count);
648
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetAsFrozen();
664
_collection = new FrugalStructList<
TextEffect
>(count);
668
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen();
746
internal FrugalStructList<
TextEffect
> _collection;
756
public struct Enumerator : IEnumerator, IEnumerator<
TextEffect
>
767
_current = default(
TextEffect
);
846
public
TextEffect
Current
869
private
TextEffect
_current;
891
_collection = new FrugalStructList<
TextEffect
>();
900
_collection = new FrugalStructList<
TextEffect
>(capacity);
906
public TextEffectCollection(IEnumerable<
TextEffect
> collection)
917
ICollection<
TextEffect
> icollectionOfT = collection as ICollection<
TextEffect
>;
921
_collection = new FrugalStructList<
TextEffect
>(icollectionOfT);
929
_collection = new FrugalStructList<
TextEffect
>(icollection);
933
_collection = new FrugalStructList<
TextEffect
>();
935
foreach (
TextEffect
item in collection)
941
TextEffect
newValue = item;
952
foreach (
TextEffect
item in collection)
System\Windows\Media\TextEffectCollection.cs (1)
29
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
PresentationFramework (8)
System\Windows\Documents\TextEffectResolver.cs (5)
43
TextEffect
effect
54
TextEffect
effectCopy;
128
private
TextEffect
_effect;
132
TextEffect
effect
153
public
TextEffect
TextEffect
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
742
case 646: t = () => typeof(
TextEffect
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10039
typeof(System.Windows.Media.
TextEffect
),
System\Windows\Markup\KnownTypes.cs (1)
6200
case KnownElements.TextEffect: t = typeof(System.Windows.Media.
TextEffect
); break;