Click or drag to resize

HtmlToQuestPdf Class

Renders limited HTML into a QuestPDF container.
Inheritance Hierarchy
SystemObject
  Seal.RendererHtmlToQuestPdf

Namespace: Seal.Renderer
Assembly: SealLibrary (in SealLibrary.dll) Version: 10.0.1.0+a44cd3a7f03c2bf3cdbd971a878c679e40bed08a
Syntax
C#
public static class HtmlToQuestPdf

The HtmlToQuestPdf type exposes the following members.

Methods
 NameDescription
Public methodStatic memberRender 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:

C#
column.Item().PaddingTop(10).Element(c =>
    HtmlToQuestPdf.Render(c, Report.ExecutionView.GetValue("report_summary")));
See Also