Lua:createForm

From Cheat Engine
Revision as of 18:55, 23 June 2026 by Leunsel (talk | contribs) (Initial page creation.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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