Difference between revisions of "Event.new"
From GiderosMobile
(13 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> |
− | '''type''': (string) | + | |
− | '''Returns''' (any) | + | === Parameters === |
− | ''' | + | '''type''': (string)<br/> |
+ | |||
+ | === Return values === | ||
+ | '''Returns''' (any) new Event object<br/> | ||
+ | '''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)