guiCreateMemo | Multi Theft Auto: Wiki Skip to content

guiCreateMemo

Client-side
Server-side
Shared
Needs checking

This function was partially migrated from the old wiki. Please review manually:

  • Missing section: Element Type

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function creates a new GUI memo. This is a multiline edit box in which the user can input text.

Syntax

guiCreateMemo ( )

Code Examples

client
function cMemoFPlayer()
Window = guiCreateWindow(0.3664, 0.2764, 0.3508, 0.3477, "GUI Window", true)
guiCreateMemo(17, 79, 414, 246, "", false, Window)
end
addEventHandler("onClientResourceStart", resourceRoot, cMemoFPlayer)

See Also

GUI Functions