SecurityOptions

PdfSaveOptions.SecurityOptions property

xls2pdf sonucunda güvenlik gerektiğinde bu seçenekleri ayarlayın.

public PdfSecurityOptions SecurityOptions { get; set; }

Örnekler

Aşağıdaki kod, çıktı pdf için yüksek çözünürlüklü yazdırma iznini ayarlar.

Workbook wb = new Workbook();
wb.Worksheets[0].Cells["A1"].Value = "Aspose";

PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();


PdfSecurityOptions pdfSecurityOptions = new PdfSecurityOptions();

// sahip şifresini ayarla
pdfSecurityOptions.OwnerPassword = "YourOwnerPassword";

//Kullanıcı şifresini ayarla
pdfSecurityOptions.UserPassword = "YourUserPassword";

// yazdırma iznini ayarla
pdfSecurityOptions.PrintPermission = true;

//baskı için yüksek çözünürlüğü ayarla
pdfSecurityOptions.FullQualityPrintPermission = true;


pdfSaveOptions.SecurityOptions = pdfSecurityOptions;

wb.Save("output.pdf", pdfSaveOptions);

Ayrıca bakınız