Upsdate 20240729

This commit is contained in:
Stefan Hutter
2024-07-29 15:00:22 +02:00
parent c3cacbec3c
commit dc2918e024
121 changed files with 329689 additions and 53 deletions

21
DOCGEN/Print.cs Normal file
View File

@@ -0,0 +1,21 @@
using OfficePrinter;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using OfficePrinter;
namespace DOCGEN
{
public class print
{
public Boolean printWord()
{
OfficePrinter.OnDocOffice onDocOffice = new OfficePrinter.OnDocOffice();
onDocOffice.PrintWordToPDF(@"X:\docdemo\0FNH8OFO.docx", @"X:\docdemo\0FNH8OFO.docx.pdf");
return true;
}
}
}