Discuss this help topic in SecureBlackbox Forum

TElPDFSignature.UseHexEncoding

TElPDFSignature     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies if the text data of the signature is encoded using Base16.

Declaration

[C#]
    bool UseHexEncoding;

[VB.NET]
    Property UseHexEncoding As Boolean

[Pascal]
    property UseHexEncoding : boolean;

[C++]
    bool get_UseHexEncoding();
    void set_UseHexEncoding(bool Value);

[PHP]
    bool get_UseHexEncoding()
    void set_UseHexEncoding(bool $Value)

[Java]
    boolean getUseHexEncoding();
    void setUseHexEncoding(boolean Value);

Description

This property specifies the format that will be used to write text strings, such as AuthorName, Location, ContactInfo to the signature object in the document. If it is set to true, the strings will be written in hexadecimal encoding (and in binary encoding otherwise). It is recommended to set this property to true if the above strings contain non-ASCII characters or store data in Unicode. The default value is false.

Discuss this help topic in SecureBlackbox Forum