Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 703 Bytes

File metadata and controls

42 lines (33 loc) · 703 Bytes

Run

Description

Initiates the execution of a VectorScript command by signalling the VectorScript interpreter to execute the script source code.

The procedure takes a single parameter, which is the name of the VectorScript command as defined at the beginning of the source code listing.

PROCEDURE Run(p : PROCEDURE);
def vs.Run(p):
    return None

Parameters

Name Type Description
p PROCEDURE

Examples

VectorScript

PROCEDURE Example;
BEGIN
Sysbeep;
Sysbeep;
Sysbeep;
END;
RUN(Example);

Python

Version

Availability: from All Versions

Category