読み上げデータのプライオリティ(読み上げ優先順位)を設定・取得する。
- Type: HzSpeechLevel
- Access type: read / write
- Default value: Normal
- Range: Low, Normal, High
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get HzSpeechLevel priority = cltComm.ReqSendDataSpeechLevel; //Set cltComm.ReqSendDataSpeechLevel = HzSpeechLevel.Normal; //Normal |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get priority = cltComm.ReqSendDataSpeechLevel #Set cltComm.ReqSendDataSpeechLevel = HzSpeechLevel::Normal #Normal |
Python
1 2 3 4 5 6 7 8 |
from haruzirasdk import hz_client_tcp_communication as hzcomm clt_comm = hzcomm.ClientTcpCommunication() #Get priority = clt_comm.ReqSendDataSpeechLevel #Set clt_comm.ReqSendDataSpeechLevel = hzcomm.HzSpeechLevel.Normal.value #Normal |