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