'Declaration Public Event AddingItemToProcess As ItemProcessingEventHandler
'Usage Dim instance As FileSystemEvents Dim handler As ItemProcessingEventHandler AddHandler instance.AddingItemToProcess, handler
public event ItemProcessingEventHandler AddingItemToProcess
Event Data
The event handler receives an argument of type ItemProcessingEventArgs containing data related to this event. The following ItemProcessingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CurrentItem | Gets or sets the current FileSystemItem object being processed. (Inherited from Xceed.FileSystem.FileSystemEventArgs) |
Excluded | Gets or sets a Boolean value that indicates whether the item pair should be excluded from the processing list or not. Default: False |
TargetItem | Gets or sets the destination FileSystemItem object. (Inherited from ) |
UserData | Gets or sets the opaque data that will be sent back to the event handler whenever an event is raised. (Inherited from ) |
Example
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