The Diagram PDF export options.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class DiagramPdfExportOptions
Inheritance: objectDiagramPdfExportOptions
Constructors
C#
public DiagramPdfExportOptions()
Properties
The forced resolution of images, including SVGs, in the exported PDF document By default, the images are exported at their native resolution.
C#
[JsonPropertyName("imgDPI")]
public int? ImageDpi { get; set; }
A flag which indicates if the page will be in a landscape orientation. By default, the page is in a portrait orientation.
C#
public bool? Landscape { get; set; }
Specifies the margins of the page. The supported units are "mm", "cm","in", and "pt".
C#
public string? Margin { get; set; }
A flag indicating whether to export the child groups as separate pages.
C#
public bool? MultiPage { get; set; }
Specifies the paper size of the PDF document The supported values are:
- A predefined size. The supported paper sizes are:
A0-A10,B0-B10,C0-C10,Executive,Folio,Legal,Letter,Tabloid.
C#
public string? PaperSize { get; set; }