This documentation is for the old version. Go to the latest Graphics Mill docs

SyncHandler.Progress Event

Fires on the operation progress notifications.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Protected Overridable Event Progress As ProgressEventHandler
C#
protected virtual event ProgressEventHandler Progress

Remarks

Using Current and Maximum arguments you can determine how much work was done at current moment. Typically you use this event to update a progress bar or display percentage of the work done. Percentage can be calculated with the following formula: (Current / Maximum) * 100.

See Also

Reference