MonobjcMonobjc Documented Class Library
QTMovie Constructor (movie, dispose, errorPtr)
NamespacesMonobjc.QTKitQTMovieQTMovie(IntPtr, Boolean, NSError%)

Initializes a QTMovie object with the data from an existing QuickTime movie movie.

Original signature is '- (id)initWithQuickTimeMovie:(Movie)movie disposeWhenDone:(BOOL)dispose error:(NSError **)errorPtr'

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public QTMovie(
	IntPtr movie,
	bool dispose,
	out NSError errorPtr
)
Public Sub New ( _
	movie As IntPtr, _
	dispose As Boolean, _
	<OutAttribute> ByRef errorPtr As NSError _
)
public:
QTMovie(
	IntPtr movie, 
	bool dispose, 
	[OutAttribute] NSError^% errorPtr
)
Parameters
movie (IntPtr)
A QuickTime movie (of type Movie).
dispose (Boolean)
A BOOL value that indicates whether QTKit should call DisposeMovie on the specified QuickTime movie when the QTMovie object is deallocated. Passing YES effectively transfers ownership of the Movie to QTKit.
errorPtr (NSError%)
MISSING
Return Value
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.QTKit (Module: Monobjc.QTKit)