SpeechSynthesizer.PhonemeReached Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsqu'un phonème est atteint.
public:
event EventHandler<System::Speech::Synthesis::PhonemeReachedEventArgs ^> ^ PhonemeReached;
public event EventHandler<System.Speech.Synthesis.PhonemeReachedEventArgs> PhonemeReached;
member this.PhonemeReached : EventHandler<System.Speech.Synthesis.PhonemeReachedEventArgs>
Public Custom Event PhonemeReached As EventHandler(Of PhonemeReachedEventArgs)
Type d'événement
Remarques
Un phonème est un composant de base de la langue écrite, généralement une lettre d’un alphabet (ou la combinaison de deux lettres) qui représente un ou plusieurs sons distincts. Par exemple, la lettre « c » est un phonème qui peut sonner comme « s » dans « cinder », ou comme « k » dans « catch ». Un mot écrit est un assemblage de phonèmes. La modification d’un phonème dans un mot modifie son orthographe.
Un SpeechSynthesizer instance génère un PhonemeReached événement pour chaque partie d’un mot qui constitue un phonème. Par exemple, pour le mot « thème » générerait trois PhonemeReached événements : un pour le son « th », un pour le son « e » et un pour le son « m » (me).
Pour obtenir un exemple et des informations sur les données associées à l’événement, consultez PhonemeReachedEventArgs.