Difference between revisions of "Lua:createMemoryView"
Jump to navigation
Jump to search
(Initial page creation.) |
m (Added related function template.) |
||
| Line 21: | Line 21: | ||
===Examples=== | ===Examples=== | ||
| − | < | + | <syntaxhighlight lang="lua" line> |
local memoryView = createMemoryView() | local memoryView = createMemoryView() | ||
memoryView.show() | memoryView.show() | ||
| − | </ | + | </syntaxhighlight> |
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{Creation}} | ||
Latest revision as of 23:46, 26 June 2026
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()