version 3
SAVE PICTURE TO FILE (document; picture)
| Parameter | Type | Description | |
| document | DocRef | Document reference number | |
| picture | Picture | Picture to be saved | 
Compatibility note: This command calls for obsolete mechanisms and is only kept for compatibility reasons. It has been favorably replaced by the WRITE PICTURE FILE command.
Description
This command saves picture in a document that was created using the Create document function.
Example
The following example creates a document and saves a picture in it:
   vRef:=Create document("";"PICT") 
   If (OK=1) 
      SAVE PICTURE TO FILE(vRef;vPict) 
      CLOSE DOCUMENT(vRef) 
   End if
See Also