SAVE PICTURE TO FILE

4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next

version 3


SAVE PICTURE TO FILE (document; picture)

ParameterTypeDescription
documentDocRefDocument reference number
picturePicturePicture 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

WRITE PICTURE FILE.


4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next