Class PdfConverter
Info
Converter for converting template file to pdf.
public class PdfConverter
Inheritance
Inherited Members
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Examples
1PdfConverter converter = new PdfConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.xlsx";
4PdfSaveOptions saveOptions = new PdfSaveOptions();
5saveOptions.OutputFile = "res.pdf";
6converter.Process(loadOptions, saveOptions);
Constructors
PdfConverter()
public PdfConverter()
Methods
Process(LoadOptions, PdfSaveOptions)
Converts template file to pdf
public void Process(LoadOptions loadOptions, PdfSaveOptions saveOptions)
Parameters
loadOptions
LoadOptions: Options for input and loading:saveOptions
PdfSaveOptions: Options for output and saving
Namespace: Sheetize Assembly: Sheetize.dll