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