読み上げ時データの種類を設定・取得する。
- Type: HzSpeechTextMode
- Access type: read / write
- Default value: Text
- Range: Text or Ssml
Examples
C#
|
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get HzSpeechTextMode mode = cltComm.ReqSendDataSpeechMode; //Set cltComm.ReqSendDataSpeechMode = HzSpeechTextMode.Text; //Text |
Ruby
|
cltComm = ClientTcpCommunication.new #Get mode = cltComm.ReqSendDataSpeechMode #Set cltComm.ReqSendDataSpeechMode = HzSpeechTextMode::Text #Text |
Python
|
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 |