読み上げデータ再生時のリピート回数設定・取得。
- Type: byte
- Access type: read / write
- Default value: 0
- Range: 0 – 127
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get byte repeat = cltComm.ReqSendDataSpeechRepeat; //Set cltComm.ReqSendDataSpeechRepeat = 3 //4回再生する |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get repeat = cltComm.ReqSendDataSpeechRepeat #Set cltComm.ReqSendDataSpeechRepeat = 3 #4回再生する |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get repeat = clt_comm.ReqSendDataSpeechRepeat #Set clt_comm.ReqSendDataSpeechRepeat = 3 #4回再生する |