Previous Page | Next Page

SAS Component Language Dictionary

PICCLOSE



Closes the graphics environment
Category: Image

Syntax
Details
Example

Syntax

rc=PICCLOSE(graphenv-id);

rc

contains the return code for the operation:

0

successful

>0

not successful

Type: Numeric

graphenv-id

contains the graphics environment identifier that was returned by PICOPEN.

Type: Numeric


Details

PICCLOSE closes the graphic environment that was initialized by PICOPEN.


Example

Close the graphics environment that was opened by a previous PICOPEN:

fseterm:
   rc=picclose(graphenv_id);
return;

Previous Page | Next Page | Top of Page