Discuss this help topic in SecureBlackbox Forum

TElPDFDocument.ActivateSecurityHandlers

TElPDFDocument     See also     


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


Specifies if security handlers have to be created on document opening.

Declaration

[C#]
    bool ActivateSecurityHandlers;

[VB.NET]
    Property ActivateSecurityHandlers As Boolean

[Pascal]
    property ActivateSecurityHandlers : boolean;

[C++]
    bool get_ActivateSecurityHandlers();
    void set_ActivateSecurityHandlers(bool Value);

[PHP]
    bool get_ActivateSecurityHandlers()
    void set_ActivateSecurityHandlers(bool $Value)

[Java]
    boolean getActivateSecurityHandlers();
    void setActivateSecurityHandlers(boolean Value);

Description

    If this property value is True, TElPDFDocument will search among registered handlers, create appropriate objects and bind them to EncryptionHandler and TElPDFSignature.Handler properties. If ActivateSecurityHandlers value is False, user has to create handlers himself and set the corresponding properties before decryption/signature verification.
    The default value is True.
    It is recommended that OwnActivatedSecurityHandlers is set to True, otherwise user should take care of disposal of all security handlers.

See also:     OwnActivatedSecurityHandlers     EncryptionHandler     TElPDFSignature.Handler    

Discuss this help topic in SecureBlackbox Forum