Click or drag to resize

ControlScreenDescendantsT Method

Get descendant child controls that implement generic control interface defined by T.

Namespace: AxiomCore2.Controls
Assembly: Canary.Axiom.Session (in Canary.Axiom.Session.exe) Version: 24.2.0.25008+ff8e4aa4099a8ee136cc622cd96d64cb655090d8
Syntax
C#
public IEnumerable<T> Descendants<T>(
	bool isDeep
)
where T : IControlBase

Parameters

isDeep  Boolean
If true, search all child controls of parent recursively using a depth first search algorithm. If false, search only immediate child controls of parent.

Type Parameters

T
Type of control to find in children.

Return Value

IEnumerableT
Child controls that implement T.

Implements

IControlParentDescendantsT(Boolean)
See Also