DESIGNTIME

Syntax

bool DESIGNTIME

Description

Use the DESIGNTIME system variable to test if the plug-in is running inside the FilterMeister editor (true) or as a stand-alone compiled plug-in (false).

Example

If you want to create a plug-in without a dialog window, you can use the following code. The use of DESIGNTIME helps to keep the FilterMeister editor open whilst creating the plug-in.
OnFilterStart: {
    if (!DESIGNTIME) {
        doAction(CA_APPLY);
    }
    return true;
}