Fires on progress notifications of the currently applied operation.

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

Syntax

Visual Basic (Declaration)
Protected Event Progress As ProgressEventHandler
C#
protected event ProgressEventHandler Progress
Visual C++
protected:
 event ProgressEventHandler^ Progress {
	void add (ProgressEventHandler^ value);
	void remove (ProgressEventHandler^ value);
}

Remarks

This event is fired only if you run the operations through build-in methods or properties. If you create external transform or codec and run it, this event will not fire (in this case you should use Progress event of the transform or codec you create).

As all operation which run through built-in methods and properties of the Bitmap are working in synchronous mode, you can safely use Current and Maximum arguments to update progress bar.

See Also