Sets the value of a string channel in the software bus * * @param {string} channelName A string containing the channel name. * @param {string} stringValue The string to be set. * @memberof CsoundMixin
(channelName, value)
| 367 | */ |
| 368 | |
| 369 | setStringChannel(channelName, value) { |
| 370 | CSOUND.setStringChannel(this.csound, channelName, value); |
| 371 | }, |
| 372 | |
| 373 | /** Request the data from a control channel |
| 374 | * |
nothing calls this directly
no test coverage detected