EmphasisBreak Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates values for lengths of EmphasisBreak
between spoken words.
public enum class EmphasisBreak
public enum EmphasisBreak
type EmphasisBreak =
Public Enum EmphasisBreak
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Default | -7 | Normal word break. |
ExtraStrong | -6 | Longest word break. |
Strong | -5 | Long word break. |
Medium | -4 | Moderate word break. |
Weak | -3 | Small word break. |
ExtraWeak | -2 | Very small word break. |
None | -1 | No word break. |
Remarks
The break emphasis is set for TextFragment instances through the Emphasis property on the FragmentState object returned by the State property on an instance of TextFragment.
Each synthetic speech engine is free to determine how to render breaks between words; the nature of emphasis differs between languages, dialects, genders, or voices.
Both EmphasisBreak and EmphasisWord may be used when setting or getting the Emphasis on a FragmentState instance.
The two values may be distinguished by the fact that the actual values of EmphasisBreak are all less than zero and values of EmphasisWord are greater than or equal to zero; and by using the value of TtsEngineAction returned by the Action property on the FragmentState object returned by the State property on an instance. From more information, see Action,and Emphasis.