getLicenceInfo

getLicenceInfo() serverExecution;

The getLicenceInfo method of the JadeLicenceInfo class gets information about your JADE licence. (For details about the information that can be returned when you call this method, see the JadeLicenceInfo class display method.)

The following example shows the use of the getLicenceInfo method.

getCompanyName(): String;
vars
    jli : JadeLicenceInfo;
begin
    create jli transient;
    jli.getLicenceInfo;
    return jli.licenceName;
end;