usePresentationClient

Type: Boolean

The usePresentationClient property of the JadeSerialPort class specifies whether the connection is opened on the presentation client or application server.

By default, the connection is opened on the application server; that is, this value is set to false. To open the connection on the presentation client, set this property to true.

This property is ignored when the application is running from a standard client.

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

vars
    sp: JadeSerialPort;
begin
    create sp transient;
    sp.usePresentationClient := true;