DeviceChannel.checkParameter Method¶
Module: DeviceChannel
Definition¶
Confirms if a parameter exists on the device.
check_parameter(self, parameter_name: str) -> bool
Parameters
parameter_namestrin The name of the parameter to check.
Returns
boolOutputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
bool checkParameter(String? parameterName)
Parameters
parameterNameStringin The name of the parameter to check.
Returns
boolOutputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
public bool CheckParameter(string parameterName)
Parameters
parameterNamestringin The name of the parameter to check.
Returns
boolOutputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
public boolean checkParameter(String parameterName) throws DevicesException
Parameters
parameterNameStringin The name of the parameter to check.
Returns
booleanOutputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceChannel_CheckParameter (
    ID3_DEVICES_DEVICE_CHANNEL hDeviceChannel,
    const char * parameterName,
    bool * result)
Parameters
hDeviceChannelID3_DEVICES_DEVICE_CHANNELin Handle to the DeviceChannel object.parameterNameconst char *in The name of the parameter to check.resultbool *out Outputs true if the parameter exists.
Returns