Skip to main content

GroupBox

GroupBox is to store other UI controls. When a set of UI controls needs to be handled as a whole, they can be placed in the GroupBox.

  • GroupBox

groupbox

Properties

PropertyDescription
Background ImageBackground images.
VisibleVisibility settings.
Clip Child ControlClipping settings when child controls out of display range.

Lua Script Example

--  Click the button to switch the visibility of the groupbox
function btn_switch_groupbox_visible(self)
local form = self.ParentForm
form.group_box.Visible = not form.group_box.Visible
end