XY Chart NET 3 Control Reference
SaveAnnotationsToClipboard Method

Use this method to save the properties of each Annotation to the clipboard.

Syntax
[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)
       
Parameters
strDelimiter
String used to delimit the properties.  
bVisibleAnnotationsOnly
Indicates if the properties for only visible Annotations are saved.
Example
' 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 
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.