UQueryBuilder<T0>.Children

Declaration

public UQueryBuilder<T2> Children(string name, params string[] classes);

Description

Selects all direct child elements of elements matching the previous rules.

 // Get all direct children of root that are buttons and have classes "health-button" or "unity-button".
 var buttons = root.Query().Children<Button>(classes: new[] { "health-button", "unity-button" });

Declaration

public UQueryBuilder<T2> Children(string name, string className);

Description

Selects all direct child elements of elements matching the previous rules.

 // Get all children, recursively, of root that are buttons and have class "health-button".
 var buttons = root.Query().Children<Button>(className: "health-button");

Did you find this page useful? Please give it a rating: