Copyright © 2005-2019 MultiMedia Soft

ZipOperationDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs at the end of a lengthy ZIP operation started through a previous call to one between the ZIP.EntryAdd, ZIP.EntryAddFromMemory, ZIP.EntryExtractToFile or ZIP.EntryExtractToMemory methods.

 

For further details about methods for ZIP management refer to the ZipMan class.

For details about using ZIP management refer to the How to manage ZIP files tutorial.

 

 

Syntax

 

[Visual Basic]

Public Event ZipOperationDone As ZipOperationEventHandler


 

[C#]

public event ZipOperationDoneEventHandler ZipOperationDone;


 

[C++]

public: __event ZipOperationDoneEventHandler ZipOperationDone;


 

 

Event Data

 

The event handler receives an argument of type ZipOperationDoneEventArgs having the following parameters:

 

Parameters

Description

 

 

nResult

The result of the ZIP operation.

 

Value

Meaning

 

 

Negative value

An error occurred, check the LastError property value in order to see the error code meaning

enumErrorCodes.ERR_NOERROR (0)

The ZIP operation was completed successfully.