Exemplo n.º 1
0
 public ProsodyNumber(float number)
 {
     _ssmlAttributeId = int.MaxValue;
     _number          = number;
     _isPercent       = false;
     _unit            = ProsodyUnit.Default;
 }
Exemplo n.º 2
0
 public ProsodyNumber(int ssmlAttributeId)
 {
     _ssmlAttributeId = ssmlAttributeId;
     _number          = 1f;
     _isPercent       = true;
     _unit            = ProsodyUnit.Default;
 }