Class PdfConverter

Info

Converter för att konvertera mallfil till pdf.

public class PdfConverter

Arv

objectPdfConverter

Arvda Medlemmar

Exempel

1PdfConverter converter = new PdfConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.xlsx";
4PdfSaveOptions saveOptions = new PdfSaveOptions();
5saveOptions.OutputFile = "res.pdf";
6converter.Process(loadOptions, saveOptions);

Konstruktörer

PdfConverter()

public PdfConverter()

Metoder

Process(LoadOptions, PdfSaveOptions)

Konverterar mallfil till pdf

public void Process(LoadOptions loadOptions, PdfSaveOptions saveOptions)

Parametrar

  • loadOptions LoadOptions: Alternativ för inmatning och laddning:
  • saveOptions PdfSaveOptions: Alternativ för utmatning och sparande

Namespace: Sheetize Assembly: Sheetize.dll

 Svenska