Use this method to save the chart data array values to the clipboard. The entire contents of the chart data array is saved to the clipboard, along with a header line containing each profile name and its associated scale label. Paste (Ctrl-V) the contents of the clipboard into MS Excel, Notebook or any other spreadsheet program or text editor.
This method uses the following parameters:
Parameter |
Description |
strDelimiter | The delimiter string to use to separate the chart data. This is an optional parameter. By default the data is delimited by a TAB character. |
bVisibleProfilesOnly | A boolean indicating whether to export data from visible profiles only (TRUE) or to export data from all profiles (FALSE). This is an optional parameter. By default data is exported from all profiles. |
Example
XYChartCtrl.SaveChartDataToClipboard 'Save data to the clipboard, tab delimited
XYChartCtrl.SaveChartDataToClipboard "," 'Save data to the clipboard, comma delimited
XYChartCtrl.SaveChartDataToClipboard ";", True 'Semi-colon delimited, save data from visible profiles only
See
Also