[]
Writes a string as PDF string, like "(BlaBla)".
Note! String is encrypted if encrypt is true and encryption is specified for the document.
Note! If value is null or empty then empty "()" PDF string is written.
public void WriteString(string value, bool encrypt = true)
| Type | Name | Description |
|---|---|---|
| string | value | |
| bool | encrypt |
Writes a byte array as PDF string, like "(BlaBla)".
Note! String is encrypted if encrypt is true and encryption is specified for the document.
Note! If value is null or empty then empty "()" PDF string is written.
public void WriteString(IList<byte> value, bool encrypt = true)
| Type | Name | Description |
|---|---|---|
| IList<byte> | value | |
| bool | encrypt |