PAGE('SYNC_ACTIVE')

Use this command to check if a synchronization is currently running. This information is important, if we trigger a synchronization automatically (f.e. with a timer). In that case we want to check if a synchronization is already running.

bool PAGE('SYNC_ACTIVE');

example:
if PAGE('SYNC_ACTIVE') THEN
  …
end;"