IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
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<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("ReconnectRemoteDeviceAcquisitionRestartEnable").Value();
// Set ReconnectRemoteDeviceAcquisitionRestartEnable to true
nodeMapSystem.FindNode<IDSImaging.Peak.API.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)