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