Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | event.eventName SEARCH    

  Functions
?
doEvent.eventName
event.end
event.eventName
for
for.exit
for.next
function.end
function.functionName
if
if.else
if.end
return
while
while.end
while.exit

  MioScript Reference
> Statements
app...
browser...
dialog...
disk...
draw...
extern...
filename...
keyboard...
menu...
mio...
mouse...
num...
path...
pushButton...
reg...
RS232...
sci...
screen...
shortcut...
sound...
str...
system...
time...
var...
window...

Statement
event.eventName

Language: MioScript
Product: MioFactory


Syntax

event.eventName


Parameters

None.


Return value

No value is returned.


Description

Marks the begining of a block of code to be executed when the corresponding event is raised, or with the statement doEvent.eventName.

See also: event.end, function.functionName

More information: MioScript: Events




MioScript Sample Code

event.load
    ...
    doEvent.myEvent()
event.end

event.myEvent
    ...
event.end