Implement Pdf printing

This commit is contained in:
2023-08-02 20:31:02 +02:00
parent baf694621c
commit 921871cab1
2 changed files with 10 additions and 4 deletions

View File

@ -66,9 +66,9 @@ namespace Elwig.Documents {
File.Copy(PdfFile.FilePath, pdfPath);
}
public async Task Print() {
public async Task Print(int copies = 1) {
if (PdfFile == null) throw new InvalidOperationException("Pdf file has not been generated yet");
Pdf.Print(PdfFile.FilePath);
await Pdf.Print(PdfFile.FilePath, copies);
}
public void Show() {