Class ExcelExportEventArgs
Provided the information about the excel export action in the Scheduler.
Inheritance
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelExportEventArgs : EventArgs
Remarks
This class encapsulates the data and control mechanisms for the Excel export process, allowing for customization and potential cancellation of the export operation.
Constructors
ExcelExportEventArgs()
Declaration
public ExcelExportEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the export operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value. If set to true, the Excel export process will be cancelled. |
Remarks
Set this property to true if you want to cancel the Excel export process. This can be useful in scenarios where certain conditions are not met for the export to proceed.
Worksheet
Gets or sets the Excel worksheet that will be exported.
Declaration
public Worksheet Worksheet { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Worksheet | An instance of the Worksheet class representing the Excel worksheet to be exported. |
Remarks
This property allows you to access and modify the worksheet before it is exported. You can customize cell styles, add new rows or columns, or modify existing data.