Class PdfConverter

PdfConverter class

Converter for converting template file to pdf.

public class PdfConverter

Methods

NameDescription
static Process(LowCodeLoadOptions, LowCodeSaveOptions)Converts template file to pdf
static Process(string, string)Converts given template file to pdf.

Examples

using System;
using Aspose.Cells.LowCode;

namespace AsposeCellsExamples
{
    public class LowCodeClassPdfConverterDemo
    {
        public static void Run()
        {
            // Initialize the PdfConverter with template and output paths
            PdfConverter.Process("template.xlsx", "res.pdf");
            
            Console.WriteLine("PDF conversion completed successfully.");
        }
    }
}

See Also