ProgressEventHandler Delegate
Handler of operation progress events.
Namespace: SMath.ControlsAssembly: SMath.Controls (in SMath.Controls.dll) Version: 1.73.9126.0
public delegate void ProgressEventHandler(
RegionBase region,
string message,
int current,
int count,
Stopwatch watch
)
Public Delegate Sub ProgressEventHandler (
region As RegionBase,
message As String,
current As Integer,
count As Integer,
watch As Stopwatch
)
public delegate void ProgressEventHandler(
RegionBase^ region,
String^ message,
int current,
int count,
Stopwatch^ watch
)
type ProgressEventHandler =
delegate of
region : RegionBase *
message : string *
current : int *
count : int *
watch : Stopwatch -> unit
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.