58 references to AutomationHeadingLevel
PresentationCore (25)
System\Windows\Automation\AutomationProperties.cs (5)
509
typeof(
AutomationHeadingLevel
),
511
new UIPropertyMetadata(
AutomationHeadingLevel
.None));
516
public static void SetHeadingLevel(DependencyObject element,
AutomationHeadingLevel
value)
526
public static
AutomationHeadingLevel
GetHeadingLevel(DependencyObject element)
530
return ((
AutomationHeadingLevel
)element.GetValue(HeadingLevelProperty));
System\Windows\Automation\Peers\AutomationPeer.cs (17)
725
virtual protected
AutomationHeadingLevel
GetHeadingLevelCore()
727
return
AutomationHeadingLevel
.None;
1305
public
AutomationHeadingLevel
GetHeadingLevel()
1307
AutomationHeadingLevel
result =
AutomationHeadingLevel
.None;
1338
private static HeadingLevel ConvertHeadingLevelToId(
AutomationHeadingLevel
value){
1341
case
AutomationHeadingLevel
.None:
1343
case
AutomationHeadingLevel
.Level1:
1345
case
AutomationHeadingLevel
.Level2:
1347
case
AutomationHeadingLevel
.Level3:
1349
case
AutomationHeadingLevel
.Level4:
1351
case
AutomationHeadingLevel
.Level5:
1353
case
AutomationHeadingLevel
.Level6:
1355
case
AutomationHeadingLevel
.Level7:
1357
case
AutomationHeadingLevel
.Level8:
1359
case
AutomationHeadingLevel
.Level9:
2192
result = ConvertHeadingLevelToId((
AutomationHeadingLevel
)result);
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
289
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
381
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElementAutomationPeer.cs (1)
481
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
PresentationFramework (9)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (3)
354
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
357
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (3)
453
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
456
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\ItemAutomationPeer.cs (3)
242
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
245
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
UIAutomationClient (24)
MS\Internal\Automation\Schema.cs (13)
208
return
AutomationHeadingLevel
.None;
210
return
AutomationHeadingLevel
.Level1;
212
return
AutomationHeadingLevel
.Level2;
214
return
AutomationHeadingLevel
.Level3;
216
return
AutomationHeadingLevel
.Level4;
218
return
AutomationHeadingLevel
.Level5;
220
return
AutomationHeadingLevel
.Level6;
222
return
AutomationHeadingLevel
.Level7;
224
return
AutomationHeadingLevel
.Level8;
226
return
AutomationHeadingLevel
.Level9;
228
return
AutomationHeadingLevel
.None;
298
new AutomationPropertyInfo( convertToAutomationHeadingLevel, AutomationElement.HeadingLevelProperty, typeof(
AutomationHeadingLevel
),
AutomationHeadingLevel
.None ),
System\Windows\Automation\PropertyCondition.cs (11)
172
else if (val is
AutomationHeadingLevel
automationHeadingLevel)
176
case
AutomationHeadingLevel
.None:
179
case
AutomationHeadingLevel
.Level1:
182
case
AutomationHeadingLevel
.Level2:
185
case
AutomationHeadingLevel
.Level3:
188
case
AutomationHeadingLevel
.Level4:
191
case
AutomationHeadingLevel
.Level5:
194
case
AutomationHeadingLevel
.Level6:
197
case
AutomationHeadingLevel
.Level7:
200
case
AutomationHeadingLevel
.Level8:
203
case
AutomationHeadingLevel
.Level9: