Joint:parent
Returns the container or wrapper the child element is in.
Usage
Returns
Examples
local overlay = crystal.Overlay:new();
local image = overlay:add_child(crystal.Image:new());
assert(image:joint():child() == image);
assert(image:joint():parent() == overlay);