58 references to AutomationHeadingLevel
PresentationCore (25)
System\Windows\Automation\AutomationProperties.cs (5)
508
typeof(
AutomationHeadingLevel
),
510
new UIPropertyMetadata(
AutomationHeadingLevel
.None));
515
public static void SetHeadingLevel(DependencyObject element,
AutomationHeadingLevel
value)
525
public static
AutomationHeadingLevel
GetHeadingLevel(DependencyObject element)
529
return ((
AutomationHeadingLevel
)element.GetValue(HeadingLevelProperty));
System\Windows\Automation\Peers\AutomationPeer.cs (17)
724
protected virtual
AutomationHeadingLevel
GetHeadingLevelCore()
726
return
AutomationHeadingLevel
.None;
1304
public
AutomationHeadingLevel
GetHeadingLevel()
1306
AutomationHeadingLevel
result =
AutomationHeadingLevel
.None;
1337
private static HeadingLevel ConvertHeadingLevelToId(
AutomationHeadingLevel
value){
1340
case
AutomationHeadingLevel
.None:
1342
case
AutomationHeadingLevel
.Level1:
1344
case
AutomationHeadingLevel
.Level2:
1346
case
AutomationHeadingLevel
.Level3:
1348
case
AutomationHeadingLevel
.Level4:
1350
case
AutomationHeadingLevel
.Level5:
1352
case
AutomationHeadingLevel
.Level6:
1354
case
AutomationHeadingLevel
.Level7:
1356
case
AutomationHeadingLevel
.Level8:
1358
case
AutomationHeadingLevel
.Level9:
2187
result = ConvertHeadingLevelToId((
AutomationHeadingLevel
)result);
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
288
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
380
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElementAutomationPeer.cs (1)
480
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
PresentationFramework (9)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (3)
353
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
356
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (3)
452
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
455
AutomationHeadingLevel
headingLevel =
AutomationHeadingLevel
.None;
System\Windows\Automation\Peers\ItemAutomationPeer.cs (3)
238
protected override
AutomationHeadingLevel
GetHeadingLevelCore()
241
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)
171
else if (val is
AutomationHeadingLevel
automationHeadingLevel)
175
case
AutomationHeadingLevel
.None:
178
case
AutomationHeadingLevel
.Level1:
181
case
AutomationHeadingLevel
.Level2:
184
case
AutomationHeadingLevel
.Level3:
187
case
AutomationHeadingLevel
.Level4:
190
case
AutomationHeadingLevel
.Level5:
193
case
AutomationHeadingLevel
.Level6:
196
case
AutomationHeadingLevel
.Level7:
199
case
AutomationHeadingLevel
.Level8:
202
case
AutomationHeadingLevel
.Level9: