Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | while.end 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
while.end

Language: MioScript
Product: MioFactory


Syntax

while.end


Parameters

None.


Return value

No value is returned.


Description

Marks the end of a block of code started with while.

See also: while, while.exit

More information: MioScript: Loops




MioScript Sample Code

&ptr = 0
while(&ptr < 5)
    var.inc(&ptr)
    alert(&ptr)
while.end