|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| system.clipboard.get.image(target) |
Parameters
| ImageID | target | ID of an image |
Return value
No value is returned.
Description
Copy the image stored in the clipboard on the specified target.
You should check if the format stored in the clipboard is bitmap with system.clipboard.get.format |
MioScript Sample Code
&imageID = draw.mem.create()
if(system.clipboard.get.format() = "bitmap")
system.clipboard.get.image(&imageID)
if.end |
|
|
|