Renders limited HTML into a QuestPDF container.
Inheritance Hierarchy Namespace: Seal.RendererAssembly: SealLibrary (in SealLibrary.dll) Version: 10.0.1.0+a44cd3a7f03c2bf3cdbd971a878c679e40bed08a
Syntaxpublic static class HtmlToQuestPdf
The HtmlToQuestPdf type exposes the following members.
Methods| | Name | Description |
|---|
  | Render |
Renders an HTML string into the container
|
Top
Remarks
Supported tags: h4, p, ul, ol, li, b, em, br. Block tags map to column items, inline tags produce styled spans.
Usage in a Razor template:
column.Item().PaddingTop(10).Element(c =>
HtmlToQuestPdf.Render(c, Report.ExecutionView.GetValue("report_summary")));
See Also