AudioPosition Property

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Gets the audio position of the event.

Namespace:  Microsoft.Speech.Synthesis
Assembly:  Microsoft.Speech (in Microsoft.Speech.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property AudioPosition As TimeSpan
	Get
Visual Basic (Usage)
Dim instance As SpeakProgressEventArgs
Dim value As TimeSpan

value = instance.AudioPosition
C#
public TimeSpan AudioPosition { get; }

Property Value

Type: System..::..TimeSpan

Returns the position of the event in the audio output stream.

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, and returns the AudioPosition for each word.

See Also