gobj_search_path()
#
Searches for a hgobj
instance by traversing the object tree using a path with ‘`’ as a separator.
Prototype
hgobj gobj_search_path(
hgobj gobj_,
const char *path_
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
The root object from which the search begins. |
|
|
The path to the target object, using ‘`’ as a separator between hierarchy levels. |
Return Value
Returns the hgobj
instance found at the specified path, or NULL
if no matching object is found.
Notes
The function supports searching by both gclass and gobj names. If a segment contains a ‘^’, it is treated as ‘gclass^gobj_name’.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples