Aurigma Graphics Mill 5.5 for .NET
SyncHandler..::.SynchronizationMode Property
Gets/sets synchronization mode for the object.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Syntax
Visual Basic
Public Overridable Property SynchronizationMode As SynchronizationMode
C#
public virtual SynchronizationMode SynchronizationMode { get; set; }
Property Value
Value that specifies the synchronization mode for the object.Implements
Remarks
Currently Graphics Mill for .NET provides the following synchronization options:
| Mode | Description |
|---|---|
| Synchronous mode | Operation (and its event handlers) is running in the application main thread. |
| Common asynchronous mode | Operation and its event handlers are running in the auxilary thread. |
| Asynchronous mode that uses main thread message loop | Operation is running in the auxilary thread, but its event handlers are running in the application main thread. |
Default value is Sync.