ConversionOptions.AppendToPdf Property

Gets or sets the boolean value to specify if append to pdf conversionOptions to be enabled.

public bool AppendToPdf { get; set; }

Property Value

Boolean

Licensing Info

This property is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

This example shows how to use the append to pdf property.
using System;
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        // create an instance of ConversionOptions class.
        ConversionOptions conversionOptions = new ConversionOptions(PageSize.A4, PageOrientation.Portrait, 10);
        
        //Assign value to AppendToPdf property.
        conversionOptions.AppendToPdf = true;

        // Call convert method to do conversion.
        Converter.Convert(@"C:\MyDocument.doc", @"C:\MyOutput.pdf", conversionOptions);         
    }      
}

See Also

ConversionOptions
ceTe.DynamicPDF.Conversion