Class PdfExportEventArgs
Provides information about the PdfExporting event.
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfExportEventArgs : Object
Constructors
PdfExportEventArgs()
Declaration
public PdfExportEventArgs()
Properties
Cancel
Gets or sets whether the Pdf export operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Columns
Gets or sets the columns of the Gantt chart for Pdf export.
Declaration
public List<GanttColumn> Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GanttColumn> | A list of GanttColumn instance representing the columns of the Gantt chart in the exported Pdf. |
Remarks
Use this property to define the columns that will be drawn in the Gantt chart Pdf export. The columns should be specified in the order in which they should draw in the exported Pdf.
IsCurrentViewExport
Gets or sets whether the current view is being exported in the Gantt chart Pdf export.
Declaration
public bool IsCurrentViewExport { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
This property controls the scope of the data being exported from the Gantt chart to a Pdf document. If set to true
,
only the rows in the current view of the Gantt chart are exported. If set to false
, all the rows rendered in the Gantt chart will be exported.
RangeEnd
Gets or sets the end date of the date range for Pdf exporting Gantt chart.
Declaration
public Nullable<DateTime> RangeEnd { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | A System.DateTime representing the end date of the date range. |
Remarks
This property defines the end of the chart timeline for exporting data to a Pdf document.
RangeStart
Gets or sets the start date of the date range for Pdf exporting Gantt chart.
Declaration
public Nullable<DateTime> RangeStart { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | A System.DateTime representing the start date of the date range. |
Remarks
This property defines the beginning of the chart timeline for exporting data to a Pdf document.