3 instantiations of TextEffect
PresentationCore (1)
System\Windows\Media\Generated\TextEffect.cs (1)
174
return new
TextEffect
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10039
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)
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)
31
public new
TextEffect
Clone()
33
return (
TextEffect
)base.Clone();
40
public new
TextEffect
CloneCurrentValue()
42
return (
TextEffect
)base.CloneCurrentValue();
281
Type typeofThis = typeof(
TextEffect
);
System\Windows\Media\Generated\TextEffectCollection.cs (53)
19
public sealed partial class TextEffectCollection : Animatable, IList, IList<
TextEffect
>
64
public void Add(
TextEffect
value)
92
public bool Contains(
TextEffect
value)
102
public int IndexOf(
TextEffect
value)
112
public void Insert(int index,
TextEffect
value)
134
public bool Remove(
TextEffect
value)
150
TextEffect
oldValue = _collection[index];
194
TextEffect
oldValue = _collection[ index ];
212
public
TextEffect
this[int index]
231
TextEffect
oldValue = _collection[ index ];
263
public void CopyTo(
TextEffect
[] array, int index)
278
bool ICollection<
TextEffect
>.IsReadOnly
302
IEnumerator<
TextEffect
> IEnumerable<
TextEffect
>.GetEnumerator()
315
return ((ICollection<
TextEffect
>)this).IsReadOnly;
350
return Contains(value as
TextEffect
);
355
return IndexOf(value as
TextEffect
);
366
Remove(value as
TextEffect
);
458
internal
TextEffect
Internal_GetItem(int i)
485
private
TextEffect
Cast(object value)
489
if (!(value is
TextEffect
))
494
return (
TextEffect
) value;
500
private int AddHelper(
TextEffect
value)
511
internal int AddWithoutFiringPublicEvents(
TextEffect
value)
520
TextEffect
newValue = value;
573
_collection = new FrugalStructList<
TextEffect
>(count);
577
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].Clone();
593
_collection = new FrugalStructList<
TextEffect
>(count);
597
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].CloneCurrentValue();
613
_collection = new FrugalStructList<
TextEffect
>(count);
617
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetAsFrozen();
633
_collection = new FrugalStructList<
TextEffect
>(count);
637
TextEffect
newValue = (
TextEffect
) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen();
715
internal FrugalStructList<
TextEffect
> _collection;
725
public struct Enumerator : IEnumerator, IEnumerator<
TextEffect
>
736
_current = default(
TextEffect
);
815
public
TextEffect
Current
838
private
TextEffect
_current;
860
_collection = new FrugalStructList<
TextEffect
>();
869
_collection = new FrugalStructList<
TextEffect
>(capacity);
875
public TextEffectCollection(IEnumerable<
TextEffect
> collection)
886
ICollection<
TextEffect
> icollectionOfT = collection as ICollection<
TextEffect
>;
890
_collection = new FrugalStructList<
TextEffect
>(icollectionOfT);
898
_collection = new FrugalStructList<
TextEffect
>(icollection);
902
_collection = new FrugalStructList<
TextEffect
>();
904
foreach (
TextEffect
item in collection)
910
TextEffect
newValue = item;
921
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)
10037
typeof(System.Windows.Media.
TextEffect
),
System\Windows\Markup\KnownTypes.cs (1)
6200
case KnownElements.TextEffect: t = typeof(System.Windows.Media.
TextEffect
); break;