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