Lua:createForm

From Cheat Engine
Jump to navigation Jump to search

<> Lua API 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]

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

Main Pages

Core Lua documentation entry points

Lua
Script Engine

Basic Visual Controls

Text / Input Controls

Value / Progress Controls

Graphics / Resources

Strings / Streams

Timers / Hotkeys

Scanning / Found Lists

Other Creation Helpers