VoiceAge Enumeration

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Defines the values for the age of a synthesized voice.

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

Syntax

Visual Basic (Declaration)
Public Enumeration VoiceAge
Visual Basic (Usage)
Dim instance As VoiceAge
C#
public enum VoiceAge

Members

Member nameDescription
NotSetIndicates that no voice age is specified.
ChildIndicates a child voice (age 10).
TeenIndicates a teenage voice (age 15).
AdultIndicates an adult voice (age 30).
SeniorIndicates a senior voice (age 65).

Remarks

VoiceAge can indicate the age of an existing voice or an age preference when selecting a voice. Three of the SelectVoiceByHints()()()() methods and two of the StartVoice()()()() methods use VoiceAge to specify the age when selecting a voice. The Age property obtains the age of an existing voice using a VoiceAge member.

See Also