XY Chart NET 3 Control Reference > Methods > SaveAnnotationsToFile Method |
Use this method to save the properties of each Annotation to a specified file.
[Visual Basic] Sub SaveAnnotationsToFile(PathAndFilename As String, [strDelimiter As String = vbTab], [bVisibleAnnotationsOnly As Boolean = False]) |
[C#] void SaveAnnotationsToFile(String PathAndFilename, String strDelimiter, bool bVisibleAnnotationsOnly) |
[C++] void SaveAnnotationsToFile(System::String ^PathAndFilename, System::String ^strDelimiter, bool bVisibleAnnotationsOnly) |
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveAnnotationsToFile("c:\annotations.txt") 'Save Annotations to file
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveAnnotationsToFile("c:\\annotations.txt", ",", false); //Save Annotations to file
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1->SaveAnnotationsToFile("c:\\annotations.txt", ",", false); //Save Annotations to file