コード例 #1
0
 public ProsodyNumber(float number)
 {
     _ssmlAttributeId = int.MaxValue;
     _number          = number;
     _isPercent       = false;
     _unit            = ProsodyUnit.Default;
 }
コード例 #2
0
 public ProsodyNumber(int ssmlAttributeId)
 {
     _ssmlAttributeId = ssmlAttributeId;
     _number          = 1f;
     _isPercent       = true;
     _unit            = ProsodyUnit.Default;
 }