3 instantiations of TextEffect
PresentationCore (1)
Core\CSharp\System\Windows\Media\Generated\TextEffect.cs (1)
210return new TextEffect();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10037bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.TextEffect(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1597case KnownElements.TextEffect: o = new System.Windows.Media.TextEffect(); break;
79 references to TextEffect
PresentationCore (71)
Core\CSharp\MS\Internal\TextFormatting\LineServicesRun.cs (4)
54private IList<TextEffect> _textEffects; // TextEffects that should be applied for this run 62IList<TextEffect> textEffects, 95IList<TextEffect> textEffects, 285TextEffect textEffect = _textEffects[i];
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (8)
523TextEffect effect = textEffects[i]; 544IList<TextEffect> activeEffects = new TextEffect[currentEffectsCount]; 548TextEffect effect = textEffects[j]; 1325IList<TextEffect> textEffects = (IList<TextEffect>)textEffectsSpanRider.CurrentElement; 1518IList<TextEffect> textEffects, 1676IList<TextEffect> textEffects,
Core\CSharp\System\Windows\Media\Generated\TextEffect.cs (5)
65public new TextEffect Clone() 67return (TextEffect)base.Clone(); 74public new TextEffect CloneCurrentValue() 76return (TextEffect)base.CloneCurrentValue(); 317Type typeofThis = typeof(TextEffect);
Core\CSharp\System\Windows\Media\Generated\TextEffectCollection.cs (53)
53public sealed partial class TextEffectCollection : Animatable, IList, IList<TextEffect> 98public void Add(TextEffect value) 126public bool Contains(TextEffect value) 136public int IndexOf(TextEffect value) 146public void Insert(int index, TextEffect value) 168public bool Remove(TextEffect value) 184TextEffect oldValue = _collection[index]; 228TextEffect oldValue = _collection[ index ]; 246public TextEffect this[int index] 266TextEffect oldValue = _collection[ index ]; 300public void CopyTo(TextEffect[] array, int index) 320bool ICollection<TextEffect>.IsReadOnly 344IEnumerator<TextEffect> IEnumerable<TextEffect>.GetEnumerator() 357return ((ICollection<TextEffect>)this).IsReadOnly; 392return Contains(value as TextEffect); 397return IndexOf(value as TextEffect); 408Remove(value as TextEffect); 505internal TextEffect Internal_GetItem(int i) 532private TextEffect Cast(object value) 539if (!(value is TextEffect)) 544return (TextEffect) value; 550private int AddHelper(TextEffect value) 561internal int AddWithoutFiringPublicEvents(TextEffect value) 570TextEffect newValue = value; 623_collection = new FrugalStructList<TextEffect>(count); 627TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].Clone(); 645_collection = new FrugalStructList<TextEffect>(count); 649TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].CloneCurrentValue(); 667_collection = new FrugalStructList<TextEffect>(count); 671TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].GetAsFrozen(); 689_collection = new FrugalStructList<TextEffect>(count); 693TextEffect newValue = (TextEffect) sourceTextEffectCollection._collection[i].GetCurrentValueAsFrozen(); 773internal FrugalStructList<TextEffect> _collection; 783public struct Enumerator : IEnumerator, IEnumerator<TextEffect> 794_current = default(TextEffect); 874public TextEffect Current 897private TextEffect _current; 919_collection = new FrugalStructList<TextEffect>(); 928_collection = new FrugalStructList<TextEffect>(capacity); 934public TextEffectCollection(IEnumerable<TextEffect> collection) 945ICollection<TextEffect> icollectionOfT = collection as ICollection<TextEffect>; 949_collection = new FrugalStructList<TextEffect>(icollectionOfT); 957_collection = new FrugalStructList<TextEffect>(icollection); 961_collection = new FrugalStructList<TextEffect>(); 963foreach (TextEffect item in collection) 969TextEffect newValue = item; 981foreach (TextEffect item in collection)
Core\CSharp\System\Windows\Media\TextEffectCollection.cs (1)
31public sealed partial class TextEffectCollection : Animatable, IList, IList<TextEffect>
PresentationFramework (8)
src\Framework\System\Windows\Documents\TextEffectResolver.cs (5)
51TextEffect effect 63TextEffect effectCopy; 137private TextEffect _effect; 141TextEffect effect 165public TextEffect TextEffect
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
738case 646: t = () => typeof(TextEffect); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10035typeof(System.Windows.Media.TextEffect),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6190case KnownElements.TextEffect: t = typeof(System.Windows.Media.TextEffect); break;