Previous Page | Next Page

SAS Component Language Dictionary

IMGTERM



Terminates an image task
Category: Image

Syntax
Example

Syntax

rc=IMGTERM(task-id);

rc

contains the return code for the operation:

0

successful

>0

not successful

Type: Numeric
task-id

contains the identifier of the task, which was returned by a previous IMGINIT function.

Type: Numeric


Example

This example shows IMGTERM used within the TERM section:

term:
   if (task-id ne 0) then
      rc=imgterm(task-id);
return;

Previous Page | Next Page | Top of Page