flowControl

Type: Integer

The flowControl property of the JadeSerialPort class contains the action used to pause and resume transmission of data.

The values for the flowControl property are listed in the following table.

Constant Integer Value Controlled by the …
FlowControl_Hardware 0 Hardware on separate circuits
FlowControl_None 2 No data flow control
FlowControl_XonXoff 1 Receiver sending pause and resume signals

The default value for the flowControl property is FlowControl_Hardware (0).

The following code fragment shows the use of the flowControl property.

vars
    sp: JadeSerialPort;
begin
    create sp transient;
    sp.flowControl := JadeSerialPort.FlowControl_Hardware;