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

Default Value

False

Example

XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

[Visual Basic]
XYChartNETCtl1.OverridePrintButton = True   'Do not execute XYChartNET's internal Print method

XYChartNETCtl1.OverridePrintButton = False  'Execute XYChartNET's internal Print method

[C#]
XYChartNETCtl1.OverridePrintButton = true;   //Do not execute XYChartNET's internal Print method

XYChartNETCtl1.OverridePrintButton = false;  //Execute XYChartNET's internal Print method

[C++]
XYChartNETCtl1->OverridePrintButton = true;   //Do not execute XYChartNET's internal Print method

XYChartNETCtl1->OverridePrintButton = false;  //Execute XYChartNET's internal Print method

See Also

Properties | PrintButtonSelected | OverrideExportDataButton | OverrideSaveImageButton