Skip to content

GuiCallback


Members

function

desc: The function that should be called when the window message is received.

type: Func|BoundFunc

meta: [object]

msgNum

desc: The window message number. See link for available window messages.

type: number

link: link

Methods

__New

__New(msgNum, function)

Constructor.

parameters

name: msgNum

desc: The window message number. See link for available window messages.

type: number

link: link

name: function

desc: The function to call when the window message is received.

type: Func|BoundFunc|string

return value

desc: A new GridGUI.GuiCallback instance.

type: GridGUI.GuiCallback

ToStr

ToStr(indent := "")

Converts the object to a string.

parameters

name: indent

desc: The amount of indentation to add on each line.

type: string

default: ""

return value

desc: A string representing this callback.

type: string

Back to top