MonobjcMonobjc Documented Class Library
SoundDidFinishPlaying Method (sound, finishedPlaying)
NamespacesMonobjc.AppKitINSSoundDelegateSoundDidFinishPlaying(NSSound, Boolean)

This delegate method is called when an NSSound instance has completed playback of its sound data.

Original signature is '- (void)sound:(NSSound *)sound didFinishPlaying:(BOOL)finishedPlaying'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
void SoundDidFinishPlaying(
	NSSound sound,
	bool finishedPlaying
)
Sub SoundDidFinishPlaying ( _
	sound As NSSound, _
	finishedPlaying As Boolean _
)
void SoundDidFinishPlaying(
	NSSound^ sound, 
	bool finishedPlaying
)
Parameters
sound (NSSound)
The NSSound that has completed playback of its sound data.
finishedPlaying (Boolean)
YES when playback was successful; NO otherwise.
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)