DeviceChannel.setParameterValueInt Method¶
Module: DeviceChannel
Definition¶
Assigns an integer value to a device parameter.
set_parameter_value_int(self, parameter_name: str, value: int) -> None
Parameters
parameter_name
strin The parameter to modify.value
intin The integer value to set.
Exceptions
An error has occurred during Devices Library execution.
void setParameterValueInt(String? parameterName, int value)
Parameters
parameterName
Stringin The parameter to modify.value
intin The integer value to set.
Exceptions
An error has occurred during Devices Library execution.
public void SetParameterValueInt(string parameterName, int value)
Parameters
parameterName
stringin The parameter to modify.value
intin The integer value to set.
Exceptions
An error has occurred during Devices Library execution.
public void setParameterValueInt(String parameterName, int value) throws DevicesException
Parameters
parameterName
Stringin The parameter to modify.value
intin The integer value to set.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceChannel_SetParameterValueInt (
ID3_DEVICES_DEVICE_CHANNEL hDeviceChannel,
const char * parameterName,
int value)
Parameters
hDeviceChannel
ID3_DEVICES_DEVICE_CHANNELin Handle to the DeviceChannel object.parameterName
const char *in The parameter to modify.value
intin The integer value to set.
Returns