SpeakProgressEventArgs..::..CharacterCount Property |
SpeakProgressEventArgs Class See Also Send Feedback |
Gets the number of characters in the word that was spoken just before the event was raised.
Namespace:
Microsoft.Speech.Synthesis
Assembly:
Microsoft.Speech (in Microsoft.Speech.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Property CharacterCount As Integer Get Friend Set |
Visual Basic (Usage) |
---|
Dim instance As SpeakProgressEventArgs Dim value As Integer value = instance.CharacterCount |
C# |
---|
public int CharacterCount { get; internal set; } |
Property Value
Type: System..::..Int32Returns the number of characters in the word that was spoken just before the event was raised.
Remarks
The SpeechSynthesizer normalizes numbers to the words that correspond to how the number will be spoken. For example, the synthesizer speaks the number "4003" as "four thousand three". It raises a SpeakProgress event for each of the spoken words. However, the CharacterCount property for each of the three words is the same. It is the count of the characters in the number "4003" in the text of the prompt, in this case, four.