Difference between revisions of "Event.new"
From GiderosMobile
| (11 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
| + | '''Class:''' [[Event]]<br/> | ||
| + | |||
=== Description === | === Description === | ||
| − | + | Creates a new '''Event''' object to be dispatched from an EventDispatcher. | |
| − | Creates a new | + | <syntaxhighlight lang="lua"> |
| − | |||
| − | < | ||
(any), (any) = Event.new(type) | (any), (any) = Event.new(type) | ||
| − | </ | + | </syntaxhighlight> |
| + | |||
=== Parameters === | === Parameters === | ||
| − | '''type''': (string) | + | '''type''': (string)<br/> |
| + | |||
=== Return values === | === Return values === | ||
| − | '''Returns''' (any) | + | '''Returns''' (any) new Event object<br/> |
| − | '''Returns''' (any) | + | '''Returns''' (any) new Event object<br/> |
| + | |||
| + | === Example === | ||
| + | '''User created event''' | ||
| + | <syntaxhighlight lang="lua"> | ||
| + | local event = Event.new("myevent") | ||
| + | event.data1 = "12345" | ||
| + | event.data2 = "abcde" | ||
| + | mydispatcher:dispatchEvent(event) | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | {{Event}} | ||
Latest revision as of 01:14, 18 November 2023
Available since: Gideros 2011.6
Class: Event
Description
Creates a new Event object to be dispatched from an EventDispatcher.
(any), (any) = Event.new(type)
Parameters
type: (string)
Return values
Returns (any) new Event object
Returns (any) new Event object
Example
User created event
local event = Event.new("myevent")
event.data1 = "12345"
event.data2 = "abcde"
mydispatcher:dispatchEvent(event)