Lua:createForm

From Cheat Engine
Jump to navigation Jump to search

<> Reference

function createForm(visible OPTIONAL) : CEForm

Creates a CEForm window.

Forms are visible by default. Pass false when the layout must be configured before showing the form.

Function Parameters[edit]

Parameter Type Description
visible Boolean Optional. True by default; set to false to create the form hidden.

Returns[edit]

CEForm — The newly created form.

Examples[edit]

local form = createForm(false)
form.Caption = "My tool"
form.show()

See Also[edit]

Main Pages