$customHeader
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

OpenJob



Opens the job specified by JobPath. Returns True if successful, false if the job could not be found or opened.



Syntax:

Procedure: OpenJob(JobPath: String): Boolean;


API Call:

Scripting
CanCloseThisJob := FALSE; // do you really want to do this ???

if CanCloseThisJob then
  begin
    PlanSwift.CloseJob;
    Result := PlanSwift.OpenJob('\jobs\1004');
  end
else
  begin
    Result := FALSE;
  end;
  • No labels