Discuss this help topic in SecureBlackbox Forum

TElPDFSignature.CustomData

TElPDFSignature     See also     


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


Contains custom signed data.

Declaration

[C#]
    byte[] CustomData;

[VB.NET]
    Property CustomData As Byte()

[Pascal]
    property CustomData : ByteArray;

[C++]
    void get_CustomData(std::vector<uint8_t> &OutResult);
    void set_CustomData(const std::vector<uint8_t> &Value);

[PHP]
    string get_CustomData()
    void set_CustomData(array of byte|string|NULL $Value)

[Java]
    byte[] getCustomData();
    void setCustomData(byte[] Value);

Description

    This property allows user to add some custom data to the signature. Use CustomDataEncoding property to specify the data encoding.

See also:     CustomDataEncoding    

Discuss this help topic in SecureBlackbox Forum