flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph iTextSharp.text.pdf
iTextSharp.text.pdf.PdfCopyForms[[PdfCopyForms]]
end
subgraph iTextSharp.text.pdf.interfaces
iTextSharp.text.pdf.interfaces.IPdfViewerPreferences[[IPdfViewerPreferences]]
class iTextSharp.text.pdf.interfaces.IPdfViewerPreferences interfaceStyle;
iTextSharp.text.pdf.interfaces.IPdfEncryptionSettings[[IPdfEncryptionSettings]]
class iTextSharp.text.pdf.interfaces.IPdfEncryptionSettings interfaceStyle;
end
iTextSharp.text.pdf.interfaces.IPdfViewerPreferences --> iTextSharp.text.pdf.PdfCopyForms
iTextSharp.text.pdf.interfaces.IPdfEncryptionSettings --> iTextSharp.text.pdf.PdfCopyForms
Source code
public PdfCopyForms(Stream os)
| Type | Name | Description |
|---|
Stream | os | |
Source code
public virtual void AddDocument(PdfReader reader)
Source code
public virtual void AddDocument(PdfReader reader, ICollection<int> pagesToKeep)
| Type | Name | Description |
|---|
PdfReader | reader | |
ICollection<int> | pagesToKeep | |
Source code
public virtual void AddDocument(PdfReader reader, string ranges)
| Type | Name | Description |
|---|
PdfReader | reader | |
string | ranges | |
Source code
public virtual void CopyDocumentFields(PdfReader reader)
Source code
public virtual void SetEncryption(byte[] userPassword, byte[] ownerPassword, int permissions, bool strength128Bits)
| Type | Name | Description |
|---|
byte``[] | userPassword | |
byte``[] | ownerPassword | |
int | permissions | |
bool | strength128Bits | |
Source code
public virtual void SetEncryption(bool strength, string userPassword, string ownerPassword, int permissions)
| Type | Name | Description |
|---|
bool | strength | |
string | userPassword | |
string | ownerPassword | |
int | permissions | |
Source code
public virtual void Close()
Source code
public virtual void Open()
Source code
public virtual void AddJavaScript(string js)
| Type | Name | Description |
|---|
string | js | |
Source code
public virtual void SetFullCompression()
Source code
public virtual void SetEncryption(byte[] userPassword, byte[] ownerPassword, int permissions, int encryptionType)
| Type | Name | Description |
|---|
byte``[] | userPassword | |
byte``[] | ownerPassword | |
int | permissions | |
int | encryptionType | |
Source code
public virtual void AddViewerPreference(PdfName key, PdfObject value)
Source code
public virtual void SetEncryption(X509Certificate[] certs, int[] permissions, int encryptionType)
| Type | Name | Description |
|---|
X509Certificate``[] | certs | |
int``[] | permissions | |
int | encryptionType | |
public virtual IList<Dictionary<string, object>> Outlines { set; }
public virtual PdfWriter Writer { get; }
public virtual bool FullCompression { get; }
public virtual int ViewerPreferences { set; }
Generated with ModularDoc