Xamarin.Forms by Microsoft

<PackageReference Include="Xamarin.Forms" Version="4.3.0.991221" />

.NET API 1,179,760 bytes

 AutomationProperties

public class AutomationProperties
Contains both abbreviated and detailed UI information that is supplied to accessibility services.
public static readonly BindableProperty HelpTextProperty

Backing store for the attached property that contains the detailed description of the UI element and its behavior.

Backing store for the attached property that contains a Boolean value that tells whether the element is available to the accessible app.

public static readonly BindableProperty LabeledByProperty

Backing store for the attached property that holds a reference to the element that labels the element that is being made accessible.

public static readonly BindableProperty NameProperty

Backing store for the attached property that contains the brief description of the UI element

public static string GetHelpText(BindableObject bindable)

Returns the help text, if any, for the bindable object.

public static bool? GetIsInAccessibleTree(BindableObject bindable)

Gets a nullable Boolean value that tells whether the bindable object is available to the accessibility system.

public static VisualElement GetLabeledBy(BindableObject bindable)

Returns the element that labels bindable, if bindable does not label itself and if another element describes it in the UI.

public static string GetName(BindableObject bindable)

Returns the short, developer-specified, introductory name of the element, such as "Progress Indicator" or "Button".

public static void SetHelpText(BindableObject bindable, string value)

Sets the help text for bindable.

public static void SetIsInAccessibleTree(BindableObject bindable, bool? value)

Sets a Boolean value that tells whether the bindable object is available to the accessibility system.

public static void SetLabeledBy(BindableObject bindable, VisualElement value)

Sets another element, such as a Label as the label for bindable.

public static void SetName(BindableObject bindable, string value)

Sets the short, developer-specified, introductory name of the element, such as "Progress Indicator" or "Button".