![]() |
Imaging Control 4 C Library 1.4.0
|
Command properties represent an action that can be performed by the device. More...
Functions | |
| bool | ic4_prop_command_execute (struct IC4_PROPERTY *prop) |
| Execute a command property. | |
| bool | ic4_prop_command_is_done (struct IC4_PROPERTY *prop, bool *is_done) |
| Checks whether a command has finished executing. | |
Command properties represent an action that can be performed by the device.
A common example for a command properties is TriggerSoftware.
| bool ic4_prop_command_execute | ( | struct IC4_PROPERTY * | prop | ) |
Execute a command property.
| [in] | prop | A command property |
true on success, otherwise false.prop is not a command property, the function fails and the error value is set to IC4_ERROR_GENICAM_TYPE_MISMATCH. | bool ic4_prop_command_is_done | ( | struct IC4_PROPERTY * | prop, |
| bool * | is_done | ||
| ) |
Checks whether a command has finished executing.
| prop | A command property |
| is_done | Output parameter receiving the command's completion status.true, if the command is completed. false, if the command is still executing. |
true on success, otherwise false.false.