Lua:createGroupBox

From Cheat Engine
Jump to navigation Jump to search

<> Reference

function createGroupBox(owner) : GroupBox

Creates a GroupBox container control.

The new GroupBox belongs to the supplied owner. The owner must inherit from WinControl.

Function Parameters

Parameter Type Description
owner WinControl The parent/owner of the new GroupBox.

Returns

GroupBox — The newly created GroupBox object.

Examples

local form = createForm()
local group = createGroupBox(form)
group.Caption = "Settings"

See Also

Main Pages