These constants indicate the blocking mode of an NSAnimation object when it is running.
Available in Mac OS X v10.4 and later.

C# | Visual Basic | Visual C++ |
public enum NSAnimationBlockingMode
Public Enumeration NSAnimationBlockingMode
public enum class NSAnimationBlockingMode

Member | Description |
---|---|
NSAnimationBlocking | Requests the animation to run in the main thread in a custom run-loop mode that blocks user input. This is the default. Available in Mac OS X v10.4 and later. |
NSAnimationNonblocking | Requests the animation to run in a standard or specified run-loop mode that allows user input. Available in Mac OS X v10.4 and later. |
NSAnimationNonblockingThreaded | Requests the animation to run in a separate thread that is spawned by the NSAnimation object. The secondary thread has its own run loop. Available in Mac OS X v10.4 and later. |

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)