Continue

Top  Previous  Next

Prototype

 

Continue

 

Description

 

Continues a loop without reaching the block end.

 

Parameters

 

None.

 

Returned value

 

None.

 

Notes

 

None.

 

Example

 

 

// Initialize a counter

Counter:=1;

 

// Start a loop ending when the top of the table is reached

While Counter <= 100 do

 

Begin

 

// Increment the counter

Inc(Counter);

 

if (Counter mod 2 <> 0) then continue;

 

// bypassed if Counter is odd

ApplicationLog(IntToStr(Counter));

 

 

End;