ISpreadsheetComponent.BeforePrintSheet Event
In This Article
Occurs before printing a workbook.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
event BeforePrintSheetEventHandler BeforePrintSheet
#Event Data
The BeforePrintSheet event's data class is BeforePrintSheetEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cancel |
Gets or sets a value indicating whether the event should be canceled.
Inherited from Cancel |
Index | Returns the index of the worksheet to be printed. |
Name | Returns the name of the worksheet to be printed. |
#Remarks
The BeforePrintSheet event fires for each worksheet being printed or exported to PDF. To cancel the print/export operation, set e.Cancel to true.
See Also