3 instantiations of TextEffect
PresentationCore (1)
System\Windows\Media\Generated\TextEffect.cs (1)
186return new TextEffect();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11137DefaultConstructor = delegate () { return new System.Windows.Media.TextEffect(); }
System\Windows\Markup\KnownTypes.cs (1)
1589case KnownElements.TextEffect: o = new System.Windows.Media.TextEffect(); break;
79 references to TextEffect
PresentationCore (71)
MS\Internal\TextFormatting\LineServicesRun.cs (4)
29private IList<TextEffect> _textEffects; // TextEffects that should be applied for this run 37IList<TextEffect> textEffects, 70IList<TextEffect> textEffects, 255TextEffect textEffect = _textEffects[i];
MS\Internal\TextFormatting\TextStore.cs (8)
501TextEffect effect = textEffects[i]; 522IList<TextEffect> activeEffects = new TextEffect[currentEffectsCount]; 526TextEffect effect = textEffects[j]; 1298IList<TextEffect> textEffects = (IList<TextEffect>)textEffectsSpanRider.CurrentElement; 1491IList<TextEffect> textEffects, 1649IList<TextEffect> textEffects,
System\Windows\Media\Generated\TextEffect.cs (5)
41public new TextEffect Clone() 43return (TextEffect)base.Clone(); 50public new TextEffect CloneCurrentValue() 52return (TextEffect)base.CloneCurrentValue(); 292Type typeofThis = typeof(TextEffect);
System\Windows\Media\Generated\TextEffectCollection.cs (53)
31public sealed partial class TextEffectCollection : Animatable, IList, IList<TextEffect> 76public void Add(TextEffect value) 104public bool Contains(TextEffect value) 114public int IndexOf(TextEffect value) 124public void Insert(int index, TextEffect value) 146public bool Remove(TextEffect value) 162TextEffect oldValue = _collection[index]; 206TextEffect oldValue = _collection[ index ]; 224public TextEffect this[int index] 244TextEffect oldValue = _collection[ index ]; 278public void CopyTo(TextEffect[] array, int index) 293bool ICollection<TextEffect>.IsReadOnly 317IEnumerator<TextEffect> IEnumerable<TextEffect>.GetEnumerator() 330return ((ICollection<TextEffect>)this).IsReadOnly; 365return Contains(value as TextEffect); 370return IndexOf(value as TextEffect); 381Remove(value as TextEffect); 473internal TextEffect Internal_GetItem(int i) 500private TextEffect Cast(object value) 504if (!(value is TextEffect)) 509return (TextEffect) value; 515private int AddHelper(TextEffect value) 526internal int AddWithoutFiringPublicEvents(TextEffect value) 535TextEffect newValue = value; 588_collection = new FrugalStructList<TextEffect>(count); 592TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].Clone(); 610_collection = new FrugalStructList<TextEffect>(count); 614TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].CloneCurrentValue(); 632_collection = new FrugalStructList<TextEffect>(count); 636TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].GetAsFrozen(); 654_collection = new FrugalStructList<TextEffect>(count); 658TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen(); 738internal FrugalStructList<TextEffect> _collection; 748public struct Enumerator : IEnumerator, IEnumerator<TextEffect> 759_current = default(TextEffect); 839public TextEffect Current 862private TextEffect _current; 884_collection = new FrugalStructList<TextEffect>(); 893_collection = new FrugalStructList<TextEffect>(capacity); 899public TextEffectCollection(IEnumerable<TextEffect> collection) 910ICollection<TextEffect> icollectionOfT = collection as ICollection<TextEffect>; 914_collection = new FrugalStructList<TextEffect>(icollectionOfT); 922_collection = new FrugalStructList<TextEffect>(icollection); 926_collection = new FrugalStructList<TextEffect>(); 928foreach (TextEffect item in collection) 934TextEffect newValue = item; 946foreach (TextEffect item in collection)
System\Windows\Media\TextEffectCollection.cs (1)
21public sealed partial class TextEffectCollection : Animatable, IList, IList<TextEffect>
PresentationFramework (8)
System\Windows\Documents\TextEffectResolver.cs (5)
38TextEffect effect 49TextEffect effectCopy; 123private TextEffect _effect; 127TextEffect effect 148public TextEffect TextEffect
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
739case 646: t = () => typeof(TextEffect); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11134typeof(System.Windows.Media.TextEffect),
System\Windows\Markup\KnownTypes.cs (1)
6193case KnownElements.TextEffect: t = typeof(System.Windows.Media.TextEffect); break;