Class ExportOptions
A class that holds export options.
Inheritance
System.Object
ExportOptions
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExportOptions : Object
Constructors
ExportOptions()
Declaration
public ExportOptions()
Properties
CustomData
The custom data collection can be exported by passing them through the customData option.
Declaration
public object CustomData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
DateFormat
Specifies the appointment start and end date format in the exported file.
Declaration
public string DateFormat { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExportType
The exportType allows you to set the format of an Excel file to be exported either as .xlsx or .csv.
Declaration
public ExcelFormat ExportType { get; set; }
Property Value
Type | Description |
---|---|
ExcelFormat |
Fields
The custom or specific field collection of event dataSource to be exported can be provided through fields option.
Declaration
public string[] Fields { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
FileName
The fileName denotes the name to be given for the exported file.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IncludeOccurrences
There also exists option to export each individual instances of the recurring events to an Excel file,
by setting true or false to the includeOccurrences
option, denoting either to include or exclude
the occurrences as separate instances on an exported Excel file.
Declaration
public bool IncludeOccurrences { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |