SET PICTURE TO PASTEBOARD

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 11 (Modified)


SET PICTURE TO PASTEBOARD (picture)

ParameterTypeDescription
picturePicturePicture to be placed in pasteboard

Description

SET PICTURE TO PASTEBOARD clears the pasteboard and puts a copy of the picture passed in picture into it.

Note: In the case of copy/paste operations, the pasteboard is equivalent to the Clipboard

The picture is transported in its native format (jpeg, tif, png, etc.).

After you have put a picture into the pasteboard, you can retrieve it using the GET PICTURE FROM PASTEBOARD command or for example GET PASTEBOARD DATA("com.4d.private.picture.gif";...).

Example

Using a floating window, you display a form that contains the array asEmployeeName, which lists the names of the employees from an [Employees] table. Each time you click on a name, you want to copy the employee's picture to the pasteboard. In the object method for the array, you write:

   If (asEmployeeName#0)
      QUERY ([Employees];[Employees]Last name=asEmployeeName{asEmployeeName})
      If (Picture size ([Employees]Photo)>0)
         SET PICTURE TO PASTEBOARD([Employees]Photo)  ` Copy the employee's photo
      Else
         CLEAR PASTEBOARD  ` No photo or no record found
      End if
   End if

See Also

APPEND DATA TO PASTEBOARD, GET PICTURE FROM PASTEBOARD.

System Variables or Sets

If a copy of the picture is correctly put into the pasteboard, the OK variable is set to 1.

If there is not enough memory to paste the picture into the pasteboard, the OK variable is set to 0, but no error is generated.


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