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