IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the current status of all available line signals. The status is written in a single bitfield.
The status of Line0 is represented by Bit0 (LSB). Line1 is Bit1 and so on. If the value of the corresponding bit is "1", the LineStatus is True (High).
Name |
LineStatusAll |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Determine the current LineStatusAll
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("LineStatusAll")->Value();
C#
// Determine the current LineStatusAll
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("LineStatusAll").Value();
Python
# Determine the current LineStatusAll (int)
value = nodeMapRemoteDevice.FindNode("LineStatusAll").Value()