Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ZipItemAddingAction Enum

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

Namespace: DevExpress.Compression

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#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