New to Telerik UI for BlazorStart a free 30-day trial

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 author (metadata) of the PDF document.

C#
public string? Author { get; set; }

The creator (metadata) of the PDF document.

C#
public string? Creator { get; set; }

The date when the PDF document is created.

C#
public DateTime? Date { get; set; }

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; }

The keywords (metadata) of the PDF document.

C#
public string? Keywords { 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; }

The producer (metadata) of the PDF document.

C#
public string? Producer { get; set; }

The subject (metadata) of the PDF document.

C#
public string? Subject { get; set; }

The title (metadata) of the PDF document.

C#
public string? Title { get; set; }