XY Chart NET 3 Control Reference > Properties > OverrideSaveImageButton Property |
Use this property to return/set a boolean indicating whether the control's internal SaveImage method is to be executed after the SaveImage button in the chart's Toolbar is selected.
[Visual Basic] Property OverrideSaveImageButton() As Boolean |
[C#] bool XYChartNETCtl.OverrideSaveImageButton |
[C++] property bool XYChartNet::XYChartNETCtl::OverrideSaveImageButton |
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.OverrideSaveImageButton = True 'Do not execute XYChartNET's internal SaveImage method XYChartNETCtl1.OverrideSaveImageButton = False 'Execute XYChartNET's internal SaveImage method
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.OverrideSaveImageButton = true; //Do not execute XYChartNET's internal SaveImage method XYChartNETCtl1.OverrideSaveImageButton = false; //Execute XYChartNET's internal SaveImage method
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1->OverrideSaveImageButton = true; //Do not execute XYChartNET's internal SaveImage method XYChartNETCtl1->OverrideSaveImageButton = false; //Execute XYChartNET's internal SaveImage method