60 references to AutomationHeadingLevel
PresentationCore (25)
System\Windows\Automation\AutomationProperties.cs (5)
511typeof(AutomationHeadingLevel), 513new UIPropertyMetadata(AutomationHeadingLevel.None)); 518public static void SetHeadingLevel(DependencyObject element, AutomationHeadingLevel value) 528public static AutomationHeadingLevel GetHeadingLevel(DependencyObject element) 532return ((AutomationHeadingLevel)element.GetValue(HeadingLevelProperty));
System\Windows\Automation\Peers\AutomationPeer.cs (17)
737virtual protected AutomationHeadingLevel GetHeadingLevelCore() 739return AutomationHeadingLevel.None; 1317public AutomationHeadingLevel GetHeadingLevel() 1319AutomationHeadingLevel result = AutomationHeadingLevel.None; 1350private static HeadingLevel ConvertHeadingLevelToId(AutomationHeadingLevel value){ 1353case AutomationHeadingLevel.None: 1355case AutomationHeadingLevel.Level1: 1357case AutomationHeadingLevel.Level2: 1359case AutomationHeadingLevel.Level3: 1361case AutomationHeadingLevel.Level4: 1363case AutomationHeadingLevel.Level5: 1365case AutomationHeadingLevel.Level6: 1367case AutomationHeadingLevel.Level7: 1369case AutomationHeadingLevel.Level8: 1371case AutomationHeadingLevel.Level9: 2206result = ConvertHeadingLevelToId((AutomationHeadingLevel)result);
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
293override protected AutomationHeadingLevel GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
389override protected AutomationHeadingLevel GetHeadingLevelCore()
System\Windows\Automation\Peers\UIElementAutomationPeer.cs (1)
490override protected AutomationHeadingLevel GetHeadingLevelCore()
PresentationFramework (9)
System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (3)
360override protected AutomationHeadingLevel GetHeadingLevelCore() 363AutomationHeadingLevel headingLevel = AutomationHeadingLevel.None;
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (3)
460override protected AutomationHeadingLevel GetHeadingLevelCore() 463AutomationHeadingLevel headingLevel = AutomationHeadingLevel.None;
System\Windows\Automation\Peers\ItemAutomationPeer.cs (3)
252override protected AutomationHeadingLevel GetHeadingLevelCore() 255AutomationHeadingLevel headingLevel = AutomationHeadingLevel.None;
UIAutomationClient (26)
MS\Internal\Automation\Schema.cs (13)
219return AutomationHeadingLevel.None; 221return AutomationHeadingLevel.Level1; 223return AutomationHeadingLevel.Level2; 225return AutomationHeadingLevel.Level3; 227return AutomationHeadingLevel.Level4; 229return AutomationHeadingLevel.Level5; 231return AutomationHeadingLevel.Level6; 233return AutomationHeadingLevel.Level7; 235return AutomationHeadingLevel.Level8; 237return AutomationHeadingLevel.Level9; 239return AutomationHeadingLevel.None; 309new AutomationPropertyInfo( convertToAutomationHeadingLevel, AutomationElement.HeadingLevelProperty, typeof(AutomationHeadingLevel),AutomationHeadingLevel.None ),
System\Windows\Automation\PropertyCondition.cs (13)
176else if (val is AutomationHeadingLevel) 178AutomationHeadingLevel automationHeadingLevel = (AutomationHeadingLevel)(val); 181case AutomationHeadingLevel.None: 184case AutomationHeadingLevel.Level1: 187case AutomationHeadingLevel.Level2: 190case AutomationHeadingLevel.Level3: 193case AutomationHeadingLevel.Level4: 196case AutomationHeadingLevel.Level5: 199case AutomationHeadingLevel.Level6: 202case AutomationHeadingLevel.Level7: 205case AutomationHeadingLevel.Level8: 208case AutomationHeadingLevel.Level9: