Difference between revisions of "Event.new"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
| Line 1: | Line 1: | ||
| + | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
'''Class:''' [[Event]]<br/> | '''Class:''' [[Event]]<br/> | ||
=== Description === | === Description === | ||
| − | Creates a new | + | Creates a new '''Event''' object to be dispatched from an EventDispatcher. |
| − | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
(any), (any) = Event.new(type) | (any), (any) = Event.new(type) | ||
| Line 10: | Line 10: | ||
=== Parameters === | === Parameters === | ||
| − | '''type''': (string) <br/> | + | '''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}} | {{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)