"imageToClipboard"
  
  Copies an image of a graphics object to the clipboard.
Synopsis
shape.imageToClipboard();
setValue(string shape, "imageToClipboard");
Parameters
None
Description
Copies an image of a graphics object to the clipboard.
Example
Copies the trend image to the clipboard.
main()
{
  TREND1.imageToClipboard();
}
      Can also be used to copy a image of the whole panel to the clipboard (see example below).
Example
Copies the panel image to the clipboard.
main()
{
  setValue(myModuleName() + "." + myPanelName() + ":", "imageToClipboard");
}
    Assignment
All widgets
