IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Enables or disables the IPO thread feature.
Name |
IPOThreadEnabled |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Guru |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Enables the IPO thread feature.
•False: Disables the IPO thread feature (default setting).
Code example
C++
// Determine the current status of IPOThreadEnabled
bool value = nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("IPOThreadEnabled")->Value();
// Set IPOThreadEnabled to false
nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("IPOThreadEnabled")->SetValue(false);
C#
// Determine the current status of IPOThreadEnabled
bool value = nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("IPOThreadEnabled").Value();
// Set IPOThreadEnabled to false
nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("IPOThreadEnabled").SetValue(false);
Python
# Determine the current status of IPOThreadEnabled (bool)
value = nodeMapSystem.FindNode("IPOThreadEnabled").Value()
# Set IPOThreadEnabled to false (bool)
nodeMapSystem.FindNode("IPOThreadEnabled").SetValue(False)