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