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