RichEditBuilder.Pdf(Action<PdfSettingsBuilder>) Method
Specifies PDF export settings.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
#Declaration
public RichEditBuilder Pdf(
Action<PdfSettingsBuilder> configure
)
#Parameters
Name | Type | Description |
---|---|---|
configure | Action<Pdf |
A delegate method that specifies PDF export settings. |
#Returns
Type | Description |
---|---|
Rich |
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 =>
//...
)