|
PDFを開いたあとの、ファイル−プロパティのセキュリティタブで確認できます。
iTextSharpでPdfWriterするときの引数でいうと、
public const int AllowAssembly = 0x400; public const int AllowCopy = 0x10; public const int AllowDegradedPrinting = 4; public const int AllowFillIn = 0x100; public const int AllowModifyAnnotations = 0x20; public const int AllowModifyContents = 8; public const int AllowPrinting = 0x804; public const int AllowScreenReaders = 0x200;
です。
|