Fires when the image has been saved (after finishing).

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

Syntax

Visual Basic (Declaration)
Public Event Saved As EventHandler
C#
public event EventHandler Saved
Visual C++
public:
 event EventHandler^ Saved {
	void add (EventHandler^ value);
	void remove (EventHandler^ value);
}

Remarks

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

See Also