Product Information > JADE Encyclopaedia of Classes – Volume 1 > Chapter 1 - System Classes > isReportWriterInstalled

isReportWriterInstalled

isReportWriterInstalled(): Boolean;

The isReportWriterInstalled method of the JadeReportWriterManager class specifies whether the JadeReportWriterSchema is installed.

This method returns a value of true if the JadeReportWriterSchema is loaded and available. If it is not, this method returns a value of false.

The following example shows the use of the isReportWriterInstalled method.

mnuFileConfigure_click(menuItem: MenuItem input) updating;
vars
    jrwm : JadeReportWriterManager;
begin
    create jrwm transient;
    if jrwm.isReportWriterInstalled then
       jrwm.startReportWriterConfiguration(app.myUser.name,
                                           MySecurityClass);
    endif;
epilog
    delete jrwm;
end;