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 | Description |
---|---|
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 |
FileName
Defines exported field name
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Footer
Defines footer text
Declaration
public string Footer { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Header
Defines header text
Declaration
public string Header { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Height
Defines content height to be export
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
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 | Description |
---|---|
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 | Description |
---|---|
System.Boolean |
Orientation
Defines the page orientation of PDF export
Declaration
public object Orientation { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
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 | Description |
---|---|
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 | Description |
---|---|
PdfExportProperties |
Style
Defines the theme style for PDF
Declaration
public PdfTheme Style { get; set; }
Property Value
Type | Description |
---|---|
PdfTheme |
Type
Defines the pivot chart export type
Declaration
public ExportType Type { get; set; }
Property Value
Type | Description |
---|---|
ExportType |
Width
Defines content width to be export
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
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 | Description |
---|---|
System.Object |