IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Enables the camera parameters selected with UserSetFeatureSelector and enables them in all user sets.
Name |
UserSetFeatureEnable[UserSetFeatureSelector] |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Enables the selected parameter.
•False: Disables the selected parameter.
Code example
C++
// Determine the current status of UserSetFeatureEnable
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("UserSetFeatureEnable")->Value();
// Set UserSetFeatureEnable to false
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("UserSetFeatureEnable")->SetValue(false);
C#
// Determine the current status of UserSetFeatureEnable
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("UserSetFeatureEnable").Value();
// Set UserSetFeatureEnable to false
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("UserSetFeatureEnable").SetValue(false);
Python
# Determine the current status of UserSetFeatureEnable (bool)
value = nodeMapRemoteDevice.FindNode("UserSetFeatureEnable").Value()
# Set UserSetFeatureEnable to false (bool)
nodeMapRemoteDevice.FindNode("UserSetFeatureEnable").SetValue(False)