IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Specifies whether the acquisition of the RemoteDevice is automatically restarted after reconnecting to the device.
Name |
ReconnectRemoteDeviceAcquisitionRestartEnable |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
Values description
•True: The acquisition will be restarted if possible.
•False: The acquisition will not be restarted.
Code example
C++
// Determine the current status of ReconnectRemoteDeviceAcquisitionRestartEnable
bool value = nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("ReconnectRemoteDeviceAcquisitionRestartEnable")->Value();
// Set ReconnectRemoteDeviceAcquisitionRestartEnable to true
nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("ReconnectRemoteDeviceAcquisitionRestartEnable")->SetValue(true);
C#
// Determine the current status of ReconnectRemoteDeviceAcquisitionRestartEnable
bool value = nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("ReconnectRemoteDeviceAcquisitionRestartEnable").Value();
// Set ReconnectRemoteDeviceAcquisitionRestartEnable to true
nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("ReconnectRemoteDeviceAcquisitionRestartEnable").SetValue(true);
Python
# Determine the current status of ReconnectRemoteDeviceAcquisitionRestartEnable (bool)
value = nodeMapSystem.FindNode("ReconnectRemoteDeviceAcquisitionRestartEnable").Value()
# Set ReconnectRemoteDeviceAcquisitionRestartEnable to true (bool)
nodeMapSystem.FindNode("ReconnectRemoteDeviceAcquisitionRestartEnable").SetValue(true)