gobj_start_children()#
Starts all direct child objects of the given hgobj instance by invoking gobj_start() on each child that is not already running and not disabled.
Prototype
int gobj_start_children(
hgobj gobj
);
Parameters
Key |
Type |
Description |
|---|---|---|
|
|
The parent object whose direct child objects will be started. |
Return Value
Returns 0 on success.
Notes
This function only starts the direct children of gobj. It does not recursively start the entire tree of child objects. To start all descendants, use gobj_start_tree().
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples