Skip to main content
A newer version of this page is available. .

ZipItemAddingAction Enum

Lists a possible action when the ZipArchive.ItemAdding event is handled.

Namespace: DevExpress.Compression

Assembly: DevExpress.Docs.v18.2.dll

Declaration

public enum ZipItemAddingAction

Members

Name Description
Continue

Add the current item to the archive and move to the next item. Default value.

Stop

Stops adding items to archive.

Cancel

Cancel adding a current item to the archive and skip to the next item.

Related API Members

The following properties accept/return ZipItemAddingAction values:

Remarks

Handle the ZipArchive.ItemAdding event to filter zip items while they are added to archive. You can also stop adding zip items when this action is required.

See Also