5 instantiations of TextEffectCollection
PresentationCore (2)
Core\CSharp\System\Windows\Media\Generated\TextEffectCollection.cs (2)
493TextEffectCollection collection = new TextEffectCollection(); 610return new TextEffectCollection();
PresentationFramework (3)
src\Framework\System\Windows\Documents\TextEffectResolver.cs (1)
179textEffects = new TextEffectCollection();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10049bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.TextEffectCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1598case KnownElements.TextEffectCollection: o = new System.Windows.Media.TextEffectCollection(); break;
54 references to TextEffectCollection
PresentationCore (21)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
195public override TextEffectCollection TextEffects
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (2)
295TextEffectCollection textEffects = (runInfo.Properties != null) ? runInfo.Properties.TextEffects : null; 508TextEffectCollection textEffects
Core\CSharp\System\Windows\Media\Generated\TextEffectCollection.cs (17)
67public new TextEffectCollection Clone() 69return (TextEffectCollection)base.Clone(); 76public new TextEffectCollection CloneCurrentValue() 78return (TextEffectCollection)base.CloneCurrentValue(); 487internal static TextEffectCollection Empty 493TextEffectCollection collection = new TextEffectCollection(); 587private static TextEffectCollection s_empty; 617TextEffectCollection sourceTextEffectCollection = (TextEffectCollection) source; 639TextEffectCollection sourceTextEffectCollection = (TextEffectCollection) source; 661TextEffectCollection sourceTextEffectCollection = (TextEffectCollection) source; 683TextEffectCollection sourceTextEffectCollection = (TextEffectCollection) source; 787internal Enumerator(TextEffectCollection list) 898private TextEffectCollection _list;
Core\CSharp\System\Windows\Media\TextFormatting\TextRunProperties.cs (1)
84public abstract TextEffectCollection TextEffects
PresentationFramework (33)
src\Framework\MS\Internal\Text\DynamicPropertyReader.cs (2)
125internal static TextEffectCollection GetTextEffects(DependencyObject element) 127return GetCollectionValue(element, TextElement.TextEffectsProperty) as TextEffectCollection;
src\Framework\MS\Internal\Text\TextProperties.cs (2)
100public override TextEffectCollection TextEffects { get { return _textEffects; } } 344private TextEffectCollection _textEffects;
src\Framework\MS\Internal\Text\TextSpanModifier.cs (1)
230public override TextEffectCollection TextEffects
src\Framework\System\Windows\Controls\AccessText.cs (3)
294new FreezableDefaultValueFactory(TextEffectCollection.Empty), 301public TextEffectCollection TextEffects 303get { return (TextEffectCollection) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Controls\TextBlock.cs (3)
976new FreezableDefaultValueFactory(TextEffectCollection.Empty), 982public TextEffectCollection TextEffects 984get { return (TextEffectCollection) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (2)
60TextEffectCollection effects = tp.GetValue(TextElement.TextEffectsProperty) as TextEffectCollection;
src\Framework\System\Windows\Documents\FlowDocument.cs (3)
328new FreezableDefaultValueFactory(TextEffectCollection.Empty), 334public TextEffectCollection TextEffects 336get { return (TextEffectCollection) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Documents\TextEffectResolver.cs (3)
176TextEffectCollection textEffects = DynamicPropertyReader.GetTextEffects(_element); 203TextEffectCollection textEffects = DynamicPropertyReader.GetTextEffects(_element); 226TextEffectCollection textEffects = DynamicPropertyReader.GetTextEffects(_element);
src\Framework\System\Windows\Documents\TextElement.cs (5)
798/// DependencyProperty for <see cref="TextEffectCollection" /> property. 804typeof(TextEffectCollection), 807new FreezableDefaultValueFactory(TextEffectCollection.Empty), 813public TextEffectCollection TextEffects 815get { return (TextEffectCollection) GetValue(TextEffectsProperty); }
src\Framework\System\Windows\Documents\TextSchema.cs (6)
602else if (value2 is TextEffectCollection) 604TextEffectCollection effects2 = (TextEffectCollection)value2; 616else if (value1 is TextEffectCollection) 618TextEffectCollection effects1 = (TextEffectCollection)value1;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
739case 647: t = () => typeof(TextEffectCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10047typeof(System.Windows.Media.TextEffectCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6191case KnownElements.TextEffectCollection: t = typeof(System.Windows.Media.TextEffectCollection); break;