IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Returns the flag indicating whether the reconnect feature is enabled or not. The reconnect feature is enabled via ReconnectEnable.
Name |
ReconnectActive |
Category |
|
Interface |
Boolean |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
Values description
•True: Reconnect is enabled.
•False: Reconnect is disabled.
Code example
C++
// Determine the current status of ReconnectActive
bool value = nodeMapLocalDevice->FindNode<peak::core::nodes::BooleanNode>("ReconnectActive")->Value();
C#
// Determine the current status of ReconnectActive
bool value = nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("ReconnectActive").Value();
Python
# Determine the current status of ReconnectActive (bool)
value = nodeMapLocalDevice.FindNode("ReconnectActive").Value()