SecurityOptions
PdfSaveOptions.SecurityOptions property
Stellen Sie diese Optionen ein, wenn Sicherheit im xls2pdf-Ergebnis benötigt wird.
public PdfSecurityOptions SecurityOptions { get; set; }
Beispiele
Der folgende Code setzt die hochauflösende Druckfreigabe für die Ausgabe pdf.
Workbook wb = new Workbook();
wb.Worksheets[0].Cells["A1"].Value = "Aspose";
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
PdfSecurityOptions pdfSecurityOptions = new PdfSecurityOptions();
//Besitzerpasswort setzen
pdfSecurityOptions.OwnerPassword = "YourOwnerPassword";
//Benutzer Passwort festlegen
pdfSecurityOptions.UserPassword = "YourUserPassword";
// Druckerlaubnis setzen
pdfSecurityOptions.PrintPermission = true;
// Hohe Auflösung für den Druck einstellen
pdfSecurityOptions.FullQualityPrintPermission = true;
pdfSaveOptions.SecurityOptions = pdfSecurityOptions;
wb.Save("output.pdf", pdfSaveOptions);
Siehe auch
- class PdfSecurityOptions
- class PdfSaveOptions
- namensraum Aspose.Cells
- Montage Aspose.Cells