60 references to AutomationHeadingLevel
PresentationCore (25)
System\Windows\Automation\AutomationProperties.cs (5)
511
typeof(
AutomationHeadingLevel
),
513
new UIPropertyMetadata(
AutomationHeadingLevel
.None));
518
public static void SetHeadingLevel(DependencyObject element,
AutomationHeadingLevel
value)
528
public static
AutomationHeadingLevel
GetHeadingLevel(DependencyObject element)
532
return ((
AutomationHeadingLevel
)element.GetValue(HeadingLevelProperty));
System\Windows\Automation\Peers\AutomationPeer.cs (17)
736
virtual protected
AutomationHeadingLevel
GetHeadingLevelCore()
738
return
AutomationHeadingLevel
.None;
1316
public
AutomationHeadingLevel
GetHeadingLevel()
1318
AutomationHeadingLevel
result =
AutomationHeadingLevel
.None;
1349
private static HeadingLevel ConvertHeadingLevelToId(
AutomationHeadingLevel
value){
1352
case
AutomationHeadingLevel
.None:
1354
case
AutomationHeadingLevel
.Level1:
1356
case
AutomationHeadingLevel
.Level2:
1358
case
AutomationHeadingLevel
.Level3:
1360
case
AutomationHeadingLevel
.Level4:
1362
case
AutomationHeadingLevel
.Level5:
1364
case
AutomationHeadingLevel
.Level6:
1366
case
AutomationHeadingLevel
.Level7:
1368
case
AutomationHeadingLevel
.Level8:
1370
case
AutomationHeadingLevel
.Level9:
2203
result = ConvertHeadingLevelToId((
AutomationHeadingLevel
)result);
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
293
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
389
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElementAutomationPeer.cs (1)
490
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
PresentationFramework (9)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (3)
360
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
363
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (3)
460
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
463
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\ItemAutomationPeer.cs (3)
252
override protected
AutomationHeadingLevel
GetHeadingLevelCore()
255
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
UIAutomationClient (26)
MS\Internal\Automation\Schema.cs (13)
219
return
AutomationHeadingLevel
.None;
221
return
AutomationHeadingLevel
.Level1;
223
return
AutomationHeadingLevel
.Level2;
225
return
AutomationHeadingLevel
.Level3;
227
return
AutomationHeadingLevel
.Level4;
229
return
AutomationHeadingLevel
.Level5;
231
return
AutomationHeadingLevel
.Level6;
233
return
AutomationHeadingLevel
.Level7;
235
return
AutomationHeadingLevel
.Level8;
237
return
AutomationHeadingLevel
.Level9;
239
return
AutomationHeadingLevel
.None;
309
new AutomationPropertyInfo( convertToAutomationHeadingLevel, AutomationElement.HeadingLevelProperty, typeof(
AutomationHeadingLevel
),
AutomationHeadingLevel
.None ),
System\Windows\Automation\PropertyCondition.cs (13)
176
else if (val is
AutomationHeadingLevel
)
178
AutomationHeadingLevel
automationHeadingLevel = (
AutomationHeadingLevel
)(val);
181
case
AutomationHeadingLevel
.None:
184
case
AutomationHeadingLevel
.Level1:
187
case
AutomationHeadingLevel
.Level2:
190
case
AutomationHeadingLevel
.Level3:
193
case
AutomationHeadingLevel
.Level4:
196
case
AutomationHeadingLevel
.Level5:
199
case
AutomationHeadingLevel
.Level6:
202
case
AutomationHeadingLevel
.Level7:
205
case
AutomationHeadingLevel
.Level8:
208
case
AutomationHeadingLevel
.Level9: