Discuss this help topic in SecureBlackbox Forum

TElPDFDocument.Open

TElPDFDocument     See also     


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


Opens the document.

Declaration

[C#]
    void Open(System.IO.Stream Stream);

[VB.NET]
    Sub Open(ByVal Stream As System.IO.Stream)

[Pascal]
    procedure Open(Stream : TStream);

[C++]
    void Open(TStream &Stream);
    void Open(TStream *Stream);

[PHP]
    void Open(TStream $Stream)

[Java]
    void open(TElStream Stream);

Parameters

  • Stream - stream with the document

Description

    Use this method to load the document and prepare it for processing. If the document is encrypted, this method tries to create a handler object necessary for decryption. The class for object creation is searched for in the list of registered handlers.

See also:     Close    

Discuss this help topic in SecureBlackbox Forum