* Sets the value of a string channel in csound.Csound. * * @param {string} name The channel to be set. * @param {string} string The string to set the channel.
(name, string)
| 330 | * @param {string} string The string to set the channel. |
| 331 | */ |
| 332 | function SetStringChannel(name, string) { |
| 333 | csound.Csound.setStringChannel(name, string); |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Requests the value of a control channel in csound.Csound. |
nothing calls this directly
no test coverage detected