04-02-2009 04:11 PM
Hi all,
Is it possible to copy the whole stripchart to clipboard? I am using the function GetCtrlDisplayBitmap and ClipboardPutBitmap to copy the stripchart to clipboard.
However, this only copies the actual view to clipboard. Is there a way to copy the whole stripchart to clipboard?
Best Regards
Bernhard
04-03-2009 09:31 AM
Hi Bernhard,
there is no function for doing this.
You only can set the points per screen higher so you can see all points on the strip chart with
SetCtrlAttribute (panelHandle, PANEL_STRIPCHART, ATTR_POINTS_PER_SCREEN, 1000);
Then replot the chart and then you use again GetCtrlDisplayBitmap and ClipboardPutBitmap.