読み上げ時データの種類を設定・取得する。
- Type: HzSpeechTextMode
- Access type: read / write
- Default value: Text
- Range: Text or Ssml
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get HzSpeechTextMode mode = cltComm.ReqSendDataSpeechMode; //Set cltComm.ReqSendDataSpeechMode = HzSpeechTextMode.Text; //Text |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get mode = cltComm.ReqSendDataSpeechMode #Set cltComm.ReqSendDataSpeechMode = HzSpeechTextMode::Text #Text |
Python
1 2 3 4 5 6 7 8 |
from haruzirasdk import hz_client_tcp_communication as hzcomm clt_comm = hzcomm.ClientTcpCommunication() #Get mode = clt_comm.ReqSendDataSpeechMode #Set clt_comm.ReqSendDataSpeechMode = hzcomm.HzSpeechTextMode.Text.value #Text |