Class PdfConverter
참고
템플릿 파일을 PDF로 변환하는 컨버터입니다.
public class PdfConverter
상속
상속된 멤버
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
예제
1PdfConverter converter = new PdfConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.xlsx";
4PdfSaveOptions saveOptions = new PdfSaveOptions();
5saveOptions.OutputFile = "res.pdf";
6converter.Process(loadOptions, saveOptions);
생성자
PdfConverter()
public PdfConverter()
메서드
Process(LoadOptions, PdfSaveOptions)
템플릿 파일을 PDF로 변환합니다.
public void Process(LoadOptions loadOptions, PdfSaveOptions saveOptions)
매개변수
loadOptions
LoadOptions: 입력 및 로딩을 위한 옵션:saveOptions
PdfSaveOptions: 출력 및 저장을 위한 옵션
Namespace: Sheetize Assembly: Sheetize.dll