Use the tabs on the upper right to switch to a different programming language.

Use the tabs on the upper right to switch to a different programming language.

Use the tabs on the upper right to switch to a different programming language.

Use the tabs on the upper right to switch to a different programming language.

dev_set_checkdev_set_checkDevSetCheckDevSetCheckdev_set_check (算子名称)

名称

dev_set_checkdev_set_checkDevSetCheckDevSetCheckdev_set_check — Specify the error handling in HDevelop.

参数签名

dev_set_check( : : Mode : )

Herror dev_set_check(const char* Mode)

Herror T_dev_set_check(const Htuple Mode)

void DevSetCheck(const HTuple& Mode)

static void HOperatorSet.DevSetCheck(HTuple mode)

def dev_set_check(mode: str) -> None

描述

dev_set_checkdev_set_checkDevSetCheckDevSetCheckDevSetCheckdev_set_check specifies how HDevelop has to react in case of an error, i.e., if the return state of an operator is not 2 ( H_MSG_TRUE) .

If ModeModeModeModemodemode has the value 'give_error'"give_error""give_error""give_error""give_error""give_error"---which is the system default---an erroneous operator call will throw an exception, that can be caught within the HDevelop program by the catchcatchCatchCatchCatchcatch statement. However, if there is no surrounding trytryTryTryTrytry-catchcatchCatchCatchCatchcatch block in the HDevelop program and the program is executed within HDevelop, the program execution stops at the erroneous operator and an error message box is opened to display the error text. In addition, the appropriate operator call is entered into the Operator Window, so that the user can easily edit and possibly correct the parameters of the erroneous operator call. If the procedure was called from HDevEngine and the exception is not caught within the HDevelop program, an HDevEngineException object is thrown and the procedure is left.

If ModeModeModeModemodemode is set to '~give_error'"~give_error""~give_error""~give_error""~give_error""~give_error", the error will be ignored and the program continues with the next operator. dev_set_check('~give_error')dev_set_check("~give_error")DevSetCheck("~give_error")DevSetCheck("~give_error")DevSetCheck("~give_error")dev_set_check("~give_error") is intended to be used in connection with dev_error_vardev_error_varDevErrorVarDevErrorVarDevErrorVardev_error_var, which allows to check the result state that is returned by the operator calls.

注意

Using the code export feature of HDevelop, the code that is generated for this operator may have a different behavior than the related HALCON operator. For a detailed description of the code export of HDevelop graphics operators into the different programming languages see in the “HDevelop User's Guide” the chapter Code Export -> General Aspects of Code Generation -> Graphics Windows.

参数表

ModeModeModeModemodemode (input_control)  string HTuplestrHTupleHtuple (string) (string) (HString) (char*)

Mode of error handling.

Default: 'give_error' "give_error" "give_error" "give_error" "give_error" "give_error"

例程 (HDevelop)

dev_close_window ()
dev_open_window (0, 0, 512, 512, 'black', WindowHandle)
dev_error_var (Error, 1)
dev_set_check ('~give_error')
FileName := 'wrong_name'
read_image (Image, FileName)
ReadError := Error
if (ReadError != H_MSG_TRUE)
  write_string (WindowHandle, 'wrong file name: '+FileName)
endif
* Now the program will stop with an exception
dev_set_check ('give_error')
read_image (Image, FileName)

结果

If the values of the specified parameters are correct, dev_set_checkdev_set_checkDevSetCheckDevSetCheckDevSetCheckdev_set_check returns 2 ( H_MSG_TRUE) . Otherwise, an exception is raised and an error code returned.

可能的后置算子

dev_error_vardev_error_varDevErrorVarDevErrorVarDevErrorVardev_error_var

参考其它

set_checkset_checkSetCheckSetCheckSetCheckset_check, trytryTryTryTrytry, catchcatchCatchCatchCatchcatch, endtryendtryEndtryEndtryEndtryendtry

模块

Foundation