[]
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)
Public Sub WriteString(value As String, Optional encrypt As Boolean = True)
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)
Public Sub WriteString(value As IList(Of Byte), Optional encrypt As Boolean = True)