9 references to IsInAccessibleTreeProperty
Microsoft.Maui.Controls (5)
AutomationProperties.cs (2)
38 return (bool?)bindable.GetValue(IsInAccessibleTreeProperty); 74 bindable.SetValue(IsInAccessibleTreeProperty, value);
Element\Element.Mapper.cs (1)
13 ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(AutomationProperties.IsInAccessibleTreeProperty.PropertyName, MapAutomationPropertiesIsInAccessibleTree);
Element\Element.Standard.cs (1)
11 /// Maps the abstract <see cref="AutomationProperties.IsInAccessibleTreeProperty"/> property to the platform-specific implementations.
SemanticProperties.cs (1)
58 AutomationProperties.IsInAccessibleTreeProperty,
Microsoft.Maui.Controls.Compatibility (4)
iOS\Cells\CellRenderer.cs (2)
48 if (cell.IsSet(AutomationProperties.IsInAccessibleTreeProperty)) 49 tableViewCell.IsAccessibilityElement = cell.GetValue(AutomationProperties.IsInAccessibleTreeProperty).Equals(true);
iOS\Renderers\NavigationRenderer.cs (1)
895 uIBarButtonItem.IsAccessibilityElement = (bool)((bool?)element.GetValue(AutomationProperties.IsInAccessibleTreeProperty) ?? _defaultIsAccessibilityElement);
iOS\VisualElementRenderer.cs (1)
345 else if (e.PropertyName == AutomationProperties.IsInAccessibleTreeProperty.PropertyName)