ProgressEventHandler Delegate

Handler of operation progress events.

Definition

Namespace: SMath.Controls
Assembly: SMath.Controls (in SMath.Controls.dll) Version: 1.73.9126.0
C#
public delegate void ProgressEventHandler(
	RegionBase region,
	string message,
	int current,
	int count,
	Stopwatch watch
)

Parameters

region  RegionBase
Current region being handled.
message  String
Status message.
current  Int32
Number of the current region.
count  Int32
Total number of regions being handled.
watch  Stopwatch
Stopwatch which tracks the operation timing.

See Also