'Declaration Public Event ItemCompletion As ItemProgressionEventHandler
'Usage Dim instance As FileSystemEvents Dim handler As ItemProgressionEventHandler AddHandler instance.ItemCompletion, handler
public event ItemProgressionEventHandler ItemCompletion
Event Data
The event handler receives an argument of type ItemProgressionEventArgs containing data related to this event. The following ItemProgressionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AllItems | Gets the total number of items being processed. |
CurrentItem | The current FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs) |
TargetItem | The destination FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs) |
UserData | Opaque data that is sent back to the event handler. (Inherited from Xceed.FileSystem.FileSystemEventArgs) |
Example
This example demonstrates how to use the ItemCompletion event to clear the "read only" attribute from files extracted from a zip archive.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also