Class PdfCellRenderArgs
The PDF cell render event arguments provides the necessary information to customize the pivot cells while PDF exporting.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfCellRenderArgs
Constructors
PdfCellRenderArgs()
Declaration
public PdfCellRenderArgs()
Properties
Cell
Defines the current PDF cell.
Declaration
[JsonPropertyName("cell")]
public object Cell { get; set; }
Property Value
| Type | Description |
|---|---|
| object | An object that represents the current cell in a PDF document. |
PivotCell
Defines the current cell item.
Declaration
[JsonPropertyName("pivotCell")]
public AxisSet PivotCell { get; set; }
Property Value
| Type | Description |
|---|---|
| AxisSet | An instance of the AxisSet class that represents the current cell item in a pivot table. |
Style
Defines the style of the current cell.
Declaration
[JsonPropertyName("style")]
public PdfStyle Style { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfStyle | An instance of the PdfStyle class that represents the style of the current cell in a PDF document. |