MonobjcMonobjc Documented Class Library
NSAnimationBlockingMode Enumeration
NamespacesMonobjc.AppKitNSAnimationBlockingMode

These constants indicate the blocking mode of an NSAnimation object when it is running.

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public enum NSAnimationBlockingMode
Public Enumeration NSAnimationBlockingMode
public enum class NSAnimationBlockingMode
Members
MemberDescription
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.


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

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)