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" });
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");