Click here to view all files
 
Represents the method that will handle the ProgressChanged event of the BackgroundWorker.

Namespace:  ESRI.ArcGISExplorer.Threading
Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.900 (2.0.0.900)

Syntax

C#
public delegate void ProgressChangedEventHandler(
	Object sender,
	ProgressChangedEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub ProgressChangedEventHandler ( _
	sender As Object, _
	e As ProgressChangedEventArgs _
)

Parameters

sender
Type: System..::.Object
The BackgroundWorker which is the source of the event.
e
Type: ESRI.ArcGISExplorer.Threading..::.ProgressChangedEventArgs
A ProgressChangedEventArgs that contains the event data.

Remarks

Use a ProgressChangedEventHandler delegate to identify the method that will run when the ProgressChanged event occurs. To associate the event with your event handler method, create an instance of this delegate and add it to the ProgressChanged event. To stop the event handler method being called when the event occurs, remove the delegate from the ProgressChanged event.

For more information about associating event handler delegates with events, see 'How to use delegates to run code when events occur'.

See Also

Relate Topics:
  BackgroundWorker Class
  DoWorkEventArgs Class
  DoWorkEventHandler Delegate
  ProgressChangedEventArgs Class
  RunWorkerCompletedEventArgs Class
  RunWorkerCompletedEventHandler Delegate
Created by Atop CHM to web converter,© 2009 all right reserved.