1 instantiation of AutomationTextAttribute
UIAutomationTypes (1)
System\Windows\Automation\AutomationIdentifier.cs (1)
165
case UiaCoreTypesApi.AutomationIdType.TextAttribute: autoid = new
AutomationTextAttribute
(id, programmaticName); break;
119 references to AutomationTextAttribute
PresentationFramework (4)
System\Windows\Controls\TextRangeAdaptor.cs (4)
1653
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
1789
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
UIAutomationClient (37)
MS\Internal\Automation\AutomationAttributeInfo.cs (3)
29
AutomationTextAttribute
id,
48
internal
AutomationTextAttribute
ID { get { return _id; } }
63
private
AutomationTextAttribute
_id;
MS\Internal\Automation\Schema.cs (1)
93
internal static bool GetAttributeInfo(
AutomationTextAttribute
id, out AutomationAttributeInfo info )
System\Windows\Automation\Text\TextRange.cs (2)
172
public TextPatternRange FindAttribute(
AutomationTextAttribute
attribute, object value, bool backward)
230
public object GetAttributeValue(
AutomationTextAttribute
attribute)
System\Windows\Automation\TextPattern.cs (31)
60
public static readonly
AutomationTextAttribute
AnimationStyleAttribute = TextPatternIdentifiers.AnimationStyleAttribute;
62
public static readonly
AutomationTextAttribute
BackgroundColorAttribute = TextPatternIdentifiers.BackgroundColorAttribute;
64
public static readonly
AutomationTextAttribute
BulletStyleAttribute = TextPatternIdentifiers.BulletStyleAttribute;
66
public static readonly
AutomationTextAttribute
CapStyleAttribute = TextPatternIdentifiers.CapStyleAttribute;
71
public static readonly
AutomationTextAttribute
CultureAttribute = TextPatternIdentifiers.CultureAttribute;
74
public static readonly
AutomationTextAttribute
FontNameAttribute = TextPatternIdentifiers.FontNameAttribute;
76
public static readonly
AutomationTextAttribute
FontSizeAttribute = TextPatternIdentifiers.FontSizeAttribute;
80
public static readonly
AutomationTextAttribute
FontWeightAttribute = TextPatternIdentifiers.FontWeightAttribute;
82
public static readonly
AutomationTextAttribute
ForegroundColorAttribute = TextPatternIdentifiers.ForegroundColorAttribute;
84
public static readonly
AutomationTextAttribute
HorizontalTextAlignmentAttribute = TextPatternIdentifiers.HorizontalTextAlignmentAttribute;
86
public static readonly
AutomationTextAttribute
IndentationFirstLineAttribute = TextPatternIdentifiers.IndentationFirstLineAttribute;
88
public static readonly
AutomationTextAttribute
IndentationLeadingAttribute = TextPatternIdentifiers.IndentationLeadingAttribute;
90
public static readonly
AutomationTextAttribute
IndentationTrailingAttribute = TextPatternIdentifiers.IndentationTrailingAttribute;
92
public static readonly
AutomationTextAttribute
IsHiddenAttribute = TextPatternIdentifiers.IsHiddenAttribute;
94
public static readonly
AutomationTextAttribute
IsItalicAttribute = TextPatternIdentifiers.IsItalicAttribute;
97
public static readonly
AutomationTextAttribute
IsReadOnlyAttribute = TextPatternIdentifiers.IsReadOnlyAttribute;
99
public static readonly
AutomationTextAttribute
IsSubscriptAttribute = TextPatternIdentifiers.IsSubscriptAttribute;
101
public static readonly
AutomationTextAttribute
IsSuperscriptAttribute = TextPatternIdentifiers.IsSuperscriptAttribute;
103
public static readonly
AutomationTextAttribute
MarginBottomAttribute = TextPatternIdentifiers.MarginBottomAttribute;
105
public static readonly
AutomationTextAttribute
MarginLeadingAttribute = TextPatternIdentifiers.MarginLeadingAttribute;
107
public static readonly
AutomationTextAttribute
MarginTopAttribute = TextPatternIdentifiers.MarginTopAttribute;
109
public static readonly
AutomationTextAttribute
MarginTrailingAttribute = TextPatternIdentifiers.MarginTrailingAttribute;
111
public static readonly
AutomationTextAttribute
OutlineStylesAttribute = TextPatternIdentifiers.OutlineStylesAttribute;
114
public static readonly
AutomationTextAttribute
OverlineColorAttribute = TextPatternIdentifiers.OverlineColorAttribute;
116
public static readonly
AutomationTextAttribute
OverlineStyleAttribute = TextPatternIdentifiers.OverlineStyleAttribute;
119
public static readonly
AutomationTextAttribute
StrikethroughColorAttribute = TextPatternIdentifiers.StrikethroughColorAttribute;
121
public static readonly
AutomationTextAttribute
StrikethroughStyleAttribute = TextPatternIdentifiers.StrikethroughStyleAttribute;
123
public static readonly
AutomationTextAttribute
TabsAttribute = TextPatternIdentifiers.TabsAttribute;
125
public static readonly
AutomationTextAttribute
TextFlowDirectionsAttribute = TextPatternIdentifiers.TextFlowDirectionsAttribute;
128
public static readonly
AutomationTextAttribute
UnderlineColorAttribute = TextPatternIdentifiers.UnderlineColorAttribute;
130
public static readonly
AutomationTextAttribute
UnderlineStyleAttribute = TextPatternIdentifiers.UnderlineStyleAttribute;
UIAutomationClientSideProviders (12)
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (5)
181
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
219
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
597
private object GetAttributeValue(
AutomationTextAttribute
attribute)
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (7)
90
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
149
AutomationTextAttribute
attribute =
AutomationTextAttribute
.LookupById(attributeId);
447
private ITextRangeProvider FindAttributeForwards(
AutomationTextAttribute
attribute, object val, TomUnit unit)
498
private ITextRangeProvider FindAttributeBackwards(
AutomationTextAttribute
attribute, object val, TomUnit unit)
551
private object GetAttributeValueForRange(ITextRange range,
AutomationTextAttribute
attribute)
UIAutomationTypes (66)
System\Windows\Automation\AutomationTextAttribute.cs (4)
29
internal static
AutomationTextAttribute
Register(AutomationIdentifierConstants.TextAttributes id, string programmaticName)
31
return (
AutomationTextAttribute
)AutomationIdentifier.Register(UiaCoreTypesApi.AutomationIdType.TextAttribute, (int)id, programmaticName);
36
public static
AutomationTextAttribute
LookupById(int id)
38
return (
AutomationTextAttribute
)AutomationIdentifier.LookupById(UiaCoreTypesApi.AutomationIdType.TextAttribute, id);
System\Windows\Automation\TextPatternIdentifiers.cs (62)
67
public static readonly
AutomationTextAttribute
AnimationStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.AnimationStyle, "TextPatternIdentifiers.AnimationStyleAttribute");
69
public static readonly
AutomationTextAttribute
BackgroundColorAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.BackgroundColor, "TextPatternIdentifiers.BackgroundColorAttribute");
71
public static readonly
AutomationTextAttribute
BulletStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.BulletStyle, "TextPatternIdentifiers.BulletStyleAttribute");
73
public static readonly
AutomationTextAttribute
CapStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.CapStyle, "TextPatternIdentifiers.CapStyleAttribute");
78
public static readonly
AutomationTextAttribute
CultureAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.Culture, "TextPatternIdentifiers.CultureAttribute");
81
public static readonly
AutomationTextAttribute
FontNameAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.FontName, "TextPatternIdentifiers.FontNameAttribute");
83
public static readonly
AutomationTextAttribute
FontSizeAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.FontSize, "TextPatternIdentifiers.FontSizeAttribute");
87
public static readonly
AutomationTextAttribute
FontWeightAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.FontWeight, "TextPatternIdentifiers.FontWeightAttribute");
89
public static readonly
AutomationTextAttribute
ForegroundColorAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.ForegroundColor, "TextPatternIdentifiers.ForegroundColorAttribute");
91
public static readonly
AutomationTextAttribute
HorizontalTextAlignmentAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.HorizontalTextAlignment, "TextPatternIdentifiers.HorizontalTextAlignmentAttribute");
93
public static readonly
AutomationTextAttribute
IndentationFirstLineAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IndentationFirstLine, "TextPatternIdentifiers.IndentationFirstLineAttribute");
95
public static readonly
AutomationTextAttribute
IndentationLeadingAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IndentationLeading, "TextPatternIdentifiers.IndentationLeadingAttribute");
97
public static readonly
AutomationTextAttribute
IndentationTrailingAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IndentationTrailing, "TextPatternIdentifiers.IndentationTrailingAttribute");
99
public static readonly
AutomationTextAttribute
IsHiddenAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IsHidden, "TextPatternIdentifiers.IsHiddenAttribute");
101
public static readonly
AutomationTextAttribute
IsItalicAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IsItalic, "TextPatternIdentifiers.IsItalicAttribute");
104
public static readonly
AutomationTextAttribute
IsReadOnlyAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IsReadOnly, "TextPatternIdentifiers.IsReadOnlyAttribute");
106
public static readonly
AutomationTextAttribute
IsSubscriptAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IsSubscript, "TextPatternIdentifiers.IsSubscriptAttribute");
108
public static readonly
AutomationTextAttribute
IsSuperscriptAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.IsSuperscript, "TextPatternIdentifiers.IsSuperscriptAttribute");
110
public static readonly
AutomationTextAttribute
MarginBottomAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.MarginBottom, "TextPatternIdentifiers.MarginBottomAttribute");
112
public static readonly
AutomationTextAttribute
MarginLeadingAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.MarginLeading, "TextPatternIdentifiers.MarginLeadingAttribute");
114
public static readonly
AutomationTextAttribute
MarginTopAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.MarginTop, "TextPatternIdentifiers.MarginTopAttribute");
116
public static readonly
AutomationTextAttribute
MarginTrailingAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.MarginTrailing, "TextPatternIdentifiers.MarginTrailingAttribute");
118
public static readonly
AutomationTextAttribute
OutlineStylesAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.OutlineStyles, "TextPatternIdentifiers.OutlineStylesAttribute");
121
public static readonly
AutomationTextAttribute
OverlineColorAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.OverlineColor, "TextPatternIdentifiers.OverlineColorAttribute");
123
public static readonly
AutomationTextAttribute
OverlineStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.OverlineStyle, "TextPatternIdentifiers.OverlineStyleAttribute");
126
public static readonly
AutomationTextAttribute
StrikethroughColorAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.StrikethroughColor, "TextPatternIdentifiers.StrikethroughColorAttribute");
128
public static readonly
AutomationTextAttribute
StrikethroughStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.StrikethroughStyle, "TextPatternIdentifiers.StrikethroughStyleAttribute");
130
public static readonly
AutomationTextAttribute
TabsAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.Tabs, "TextPatternIdentifiers.TabsAttribute");
132
public static readonly
AutomationTextAttribute
TextFlowDirectionsAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.TextFlowDirections, "TextPatternIdentifiers.TextFlowDirectionsAttribute");
135
public static readonly
AutomationTextAttribute
UnderlineColorAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.UnderlineColor, "TextPatternIdentifiers.UnderlineColorAttribute");
137
public static readonly
AutomationTextAttribute
UnderlineStyleAttribute =
AutomationTextAttribute
.Register(AutomationIdentifierConstants.TextAttributes.UnderlineStyle, "TextPatternIdentifiers.UnderlineStyleAttribute");