AutomationProperties.IsInAccessibleTree
Indicates whether the element is available to an accessible application
How to use this component
The AutomationProperties.IsInAccessibleTree
attached property is a boolean
that determines if the element is accessible, and hence visible, to screen readers. It must be set to true
to use the other accessibility attached properties.
More info here – https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/accessibility/automation-properties#automationpropertiesisinaccessibletree
Code Resource
Deprecated: htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated in /home/site/wwwroot/wp-content/themes/huntsman-child/single-mobile.php on line 96
<Entry AutomationProperties.IsInAccessibleTree="true" />
var entry = new Entry();
AutomationProperties.SetIsInAccessibleTree(entry, true);