XY Chart NET 3 Control Reference > Methods > SaveAnnotationsToClipboard Method |
Use this method to save the properties of each Annotation to the clipboard.
[Visual Basic] Sub SaveAnnotationsToClipboard([strDelimiter As String = vbTab], [bVisibleAnnotationsOnly As Boolean = False]) |
[C#] void SaveAnnotationsToClipboard(String strDelimiter, bool bVisibleAnnotationsOnly) |
[C++] void SaveAnnotationsToClipboard(System::String ^strDelimiter, bool bVisibleAnnotationsOnly) |
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveAnnotationsClipboard() 'Save Annotations to clipboard using default parameter values
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveAnnotationsClipboard(",", false); //Save Annotations to clipboard
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1->SaveAnnotationsClipboard(",", false); //Save Annotations to clipboard