System.Continue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Continue;

Properties

Type Visibility Source Unit Parent
procedure public System.pas System System

Description

Allows the flow of control to proceed to the next iteration of for, while, or repeat statements.

In Delphi code, the Continue procedure causes the flow of control to proceed to the next iteration of the enclosing for, while, or repeat statement.

The compiler reports an error if a call to Continue is not enclosed by a for, while, or repeat statement.

Note: Continue does not violate the flow of control dictated by a try..finally construct. If a call to Continue causes the control to leave the try clause, the finally clause is entered.

See Also


Code Examples