BarcodeReader.checkParameter Method¶
Module: BarcodeReader
Definition¶
Confirms if a parameter exists on the device.
check_parameter(self, parameter_name: str) -> bool
Parameters
parameter_name
strin The name of the parameter to check.
Returns
bool
Outputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
bool checkParameter(String? parameterName)
Parameters
parameterName
Stringin The name of the parameter to check.
Returns
bool
Outputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
public bool CheckParameter(string parameterName)
Parameters
parameterName
stringin The name of the parameter to check.
Returns
bool
Outputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
public boolean checkParameter(String parameterName) throws DevicesException
Parameters
parameterName
Stringin The name of the parameter to check.
Returns
boolean
Outputs true if the parameter exists.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesBarcodeReader_CheckParameter (
ID3_DEVICES_BARCODE_READER hBarcodeReader,
const char * parameterName,
bool * result)
Parameters
hBarcodeReader
ID3_DEVICES_BARCODE_READERin Handle to the BarcodeReader object.parameterName
const char *in The name of the parameter to check.result
bool *out Outputs true if the parameter exists.
Returns