Class BeforeExportEventArgs
The before export event arguments provides the necessary information to customize before exporting the file.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeExportEventArgs : Object
Constructors
BeforeExportEventArgs()
Declaration
public BeforeExportEventArgs()
Properties
AllowRepeatHeader
Defines option to disable the repeat headers.
Declaration
public bool AllowRepeatHeader { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
DataCollections
Defines pivot table cell collections.
Declaration
public Matrix<Matrix<AxisSet>> DataCollections { get; set; }
Property Value
Type |
---|
Syncfusion.Blazor.PivotView.Matrix<Syncfusion.Blazor.PivotView.Matrix<AxisSet>> |
ExcelExportProperties
Defines the additional settings for excel export such as multiple export, header, footer, etc.
Declaration
public ExcelExportProperties ExcelExportProperties { get; set; }
Property Value
Type | Description |
---|---|
ExcelExportProperties | An instance of ExcelExportProperties class that contains additional settings for exporting the PivotTable to Excel. |
FileName
Defines exported field name.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string name. |
Footer
Defines footer text.
Declaration
public string Footer { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Header
Defines header text.
Declaration
public string Header { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Height
Defines content height to be export.
Declaration
public Nullable<double> Height { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Accepts the double value. |
IsBlob
A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system.
Declaration
public bool IsBlob { get; set; }
Property Value
Type |
---|
System.Boolean |
IsMultipleExport
Defines an option to export multiple pivot table to the same PDF file.
Declaration
public bool IsMultipleExport { get; set; }
Property Value
Type |
---|
System.Boolean |
Orientation
Defines the page orientation of PDF export.
Declaration
public Nullable<PdfPageOrientation> Orientation { get; set; }
Property Value
Type |
---|
System.Nullable<Syncfusion.PdfExport.PdfPageOrientation> |
PdfDoc
Defines current PDF file that holds the pivot table information which will be used to export.
Declaration
public object PdfDoc { get; set; }
Property Value
Type |
---|
System.Object |
PdfExportProperties
Defines the additional settings for PDF export such as page size, orientation, header, footer, etc.
Declaration
public PdfExportProperties PdfExportProperties { get; set; }
Property Value
Type |
---|
PdfExportProperties |
Style
Defines the theme style for PDF.
Declaration
public PdfTheme Style { get; set; }
Property Value
Type | Description |
---|---|
PdfTheme | A PdfTheme object that represents the theme style to apply when generating the PDF. |
Type
Defines the pivot chart export type.
Declaration
public ExportType Type { get; set; }
Property Value
Type | Description |
---|---|
ExportType | An ExportType enumeration value that represents the type of export to use when generating a pivot chart. |
Width
Defines content width to be export.
Declaration
public Nullable<double> Width { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Accepts the double value. |
Workbook
Defines current excel work book that holds the pivot table information which will be used to export.
Declaration
public object Workbook { get; set; }
Property Value
Type |
---|
System.Object |