Difference between revisions of "Lua:createMemoryView"

From Cheat Engine
Jump to navigation Jump to search
(Initial page creation.)
 
m (Added related function template.)
 
Line 21: Line 21:
  
 
===Examples===
 
===Examples===
<pre>
+
<syntaxhighlight lang="lua" line>
 
local memoryView = createMemoryView()
 
local memoryView = createMemoryView()
 
memoryView.show()
 
memoryView.show()
</pre>
+
</syntaxhighlight>
  
 
{{LuaSeeAlso}}
 
{{LuaSeeAlso}}
 +
 +
{{Creation}}

Latest revision as of 23:46, 26 June 2026

<> Lua API Reference

function createMemoryView() : Memoryview

Creates a new Memory View window.

This additional Memory View does not receive debug events. Use getMemoryViewForm() to obtain Cheat Engine's original/main Memory View.

Function Parameters[edit]

Parameter Type Description
None This function does not take parameters.

Returns[edit]

Memoryview — The newly created Memory View window.

Examples[edit]

1 local memoryView = createMemoryView()
2 memoryView.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