version 1
CT Get chart picture (area; object; partType; partSpecifics)  Picture
| Parameter | Type | Description | |
| area | Longint | 4D Chart area | |
| object | Longint | Object ID | |
| partType | Integer | Type of object for which to get picture | |
| partSpecifics | Longint | Specific part of object for which to get picture | |
| Function result | Picture | Picture displayed in the specified | |
| series of a picture chart | 
Description
CT Get chart picture returns the picture being displayed in the specified series of a picture chart. The picture is returned in a picture variable.
partType must be equal to 8, which is a series in a chart.
partSpecifics must be equal to the number of the series multiplied by 100.
Example
This example copies a picture from the first series of a picture graph and places it on the Clipboard.
$Pict:=CT Get chart picture (Area;$ChartID;8;100) CT PICTURE TO CLIPBOARD ($Pict)
See Also