AXValue

@Serializable
data class AXValue(val type: Accessibility.AXValueType, val value: JsonElement? = null, val relatedNodes: List<Accessibility.AXRelatedNode>? = null, val sources: List<Accessibility.AXValueSource>? = null)

A single computed AX property.

Constructors

Link copied to clipboard
constructor(type: Accessibility.AXValueType, value: JsonElement? = null, relatedNodes: List<Accessibility.AXRelatedNode>? = null, sources: List<Accessibility.AXValueSource>? = null)

Properties

Link copied to clipboard

One or more related nodes, if applicable.

Link copied to clipboard

The sources which contributed to the computation of this property.

Link copied to clipboard

The type of this value.

Link copied to clipboard
val value: JsonElement? = null

The computed value of this property.