MonobjcMonobjc Documented Class Library
NSSpeechSynthesizer..::..SpeechSynthesizerDidFinishSpeakingEventHandler Delegate
NamespacesMonobjc.AppKitNSSpeechSynthesizerNSSpeechSynthesizer..::..SpeechSynthesizerDidFinishSpeakingEventHandler

Sent when an NSSpeechSynthesizer object finishes speaking through the sound output device.

Original signature is '- (void)speechSynthesizer:(NSSpeechSynthesizer *)sender didFinishSpeaking:(BOOL)success'

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void SpeechSynthesizerDidFinishSpeakingEventHandler(
	NSSpeechSynthesizer sender,
	bool success
)
Public Delegate Sub SpeechSynthesizerDidFinishSpeakingEventHandler ( _
	sender As NSSpeechSynthesizer, _
	success As Boolean _
)
public delegate void SpeechSynthesizerDidFinishSpeakingEventHandler(
	NSSpeechSynthesizer^ sender, 
	bool success
)
Parameters
sender (NSSpeechSynthesizer)
An NSSpeechSynthesizer object that has stopped speaking into the sound output device.
success (Boolean)
YES when speaking completed normally, NO if speaking is stopped prematurely for any reason.
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)