pyui.end_group_box - pytha-3d-cad/pytha-lua-api GitHub Wiki
End or close a group box that was created with create_group_box, create_foldable_group_box or create_scrollable_group_box. Every group box must be closed with a call to end_group_box. All controls created between create_group_box and end_group_box are placed inside the group.
pyui.end_group_box(dialog)
dialog:end_group_box()
Parameters
| Type | Description | |
|---|---|---|
dialog |
dialog_handle |
Dialog where the control is created |
Return value
| Type | Description |
|---|---|
control_handle |
A handle to the newly created control |
Note that the return value is a control_handle for the end of the group and distinct from the control handle for the group itself.
Events
There are no group-related events.
See also
Control Gallery, create_group_box, create_foldable_group_box, set_control_text, create_scrollable_box