children
The node's children in the accessibility hierarchy.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine.Accessibility
- Assembly: UnityEngine.AccessibilityModule
public IReadOnlyList<AccessibilityNode> children { get; }
Remarks
To add a new child, call AccessibilityHierarchy.AddNode or AccessibilityHierarchy.InsertNode on the hierarchy that the node belongs to, passing the node as the parent. To make an existing node a child of this node, or move a child to a different node, call AccessibilityHierarchy.MoveNode. To remove a child, call AccessibilityHierarchy.RemoveNode.