Class XslFoLoadOptions

XslFoLoadOptions class

Represents options for loading/importing XSL-FO file into pdf document.

public sealed class XslFoLoadOptions : XmlLoadOptions

Constructors

NameDescription
XslFoLoadOptions()Creates XslFoLoadOptions object without xsl data.
XslFoLoadOptions(Stream)Creates XslFoLoadOptions object with xsl data.
XslFoLoadOptions(string)Creates XslFoLoadOptions object with xsl data.

Properties

NameDescription
BasePath { get; set; }The base path/url from which are searched relative paths to external resources (if any) referenced in loaded SVG file.
DisableFontLicenseVerifications { get; set; }Gets or sets flag to disable any license restrictions for all fonts while loading the file. When true, allows to execute operations with font that are prohibited by a license of this font, for example allows to embed a font into a PDF document even if license rules disable embedding for this font. By default false.
LoadFormat { get; }Represents file format which LoadOptions describes.
WarningHandler { get; set; }Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease.
XslStream { get; }Gets xsl data for converting xml into pdf document.
XsltArgumentList { get; set; }XsltArgumentList for inserting values into existing xls parameters XLS file has ‘animal’ parameter without value: XsltArgumentList args = new XsltArgumentList(); args.AddParam(“animal”, “”, “cat”); now the converter assumes that there is an ‘animal’ parameter with the value ‘cat’ in the XLS file.

Fields

NameDescription
ParsingErrorsHandlingTypeSource XSLFO document can contain formatting errors. This enum enumerates possible strategies of handking of that errors

Examples

The following example shows how to convert XSL-FO file to PDF file

[C#]
// The path to the documents directory.
string dataDir = @"YOUR_DATA_DIRECTORY";

// The path to your XSL-FO File.
string xslFoFile = Path.Combine(dataDir, "XSLFO-to-PDF.xslfo");

// The path to output PDF File.
string pdfFile = Path.Combine(dataDir, "XSLFO-to-PDF.pdf");

// Initialize XslFoLoadOptions	
XslFoLoadOptions xslFoLoadOptions = new XslFoLoadOptions();
    
using (Document pdfDocument = new Document(xslFoFile, xslFoLoadOptions))
{
 
    // Save PDF file
    pdfDocument.Save(pdfFile);
}
[VB.NET]

    ' The path to the documents directory.
    Dim dataDir As String = "YOUR_DATA_DIRECTORY"

    ' The path to your XSL-FO File.
    Dim xslFoFile = Path.Combine(dataDir, "XSLFO-to-PDF.xslfo")

    ' The path to output PDF File.
    Dim pdfFile = Path.Combine(dataDir, "XSLFO-to-PDF.pdf")
 
    ' Initialize XslFoLoadOptions  
    Dim xslFoLoadOptions As XslFoLoadOptions = New XslFoLoadOptions()
 
    Using pdfDocument As Document = New Document(xslFoFile, xslFoLoadOptions)
 
        ' Save PDF file
        pdfDocument.Save(pdfFile)
    End Using

See Also