Discuss this help topic in SecureBlackbox Forum

TElPDFDocument.Close

TElPDFDocument     See also     


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


Closes the document.

Declaration

[C#]
    void Close(bool Save);

[VB.NET]
    Sub Close(ByVal Save As Boolean)

[Pascal]
    procedure Close(Save : boolean);

[C++]
    void Close(bool Save);

[PHP]
    void Close(bool $Save)

[Java]
    void close(boolean Save);

Parameters

  • Save - If True the document will be saved,
    if False it will be closed without changes.

Description

    Use this method to close the document. Use Save parameter to specify if the document has to be saved. The document is saved to the stream, specified in the call to Open method.

See also:     Open    

Discuss this help topic in SecureBlackbox Forum