Skip to main content
JS

RichEditBuilder.Pdf(Action<PdfSettingsBuilder>) Method

Specifies PDF export settings.

Namespace: DevExpress.AspNetCore.RichEdit

Assembly: DevExpress.AspNetCore.RichEdit.v23.2.dll

NuGet Package: DevExpress.AspNetCore.RichEdit

Declaration

public RichEditBuilder Pdf(
    Action<PdfSettingsBuilder> configure
)

Parameters

Name Type Description
configure Action<PdfSettingsBuilder>

A delegate method that specifies PDF export settings.

Returns

Type Description
RichEditBuilder

An object that can be used to further configure the Rich Text Editor.

Remarks

@(Html.DevExpress().RichEdit("richEdit")
   .Pdf(p => {
       p.ExportUrl(Url.Action("Export"));
   })
   .Fonts(f =>
   //...
)
See Also