IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the status of all available line signals at the time of the selected latch trigger event included in the payload of the image. The latch trigger event is selected by ChunkLatchTriggerSource. 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 |
ChunkLineStatusAll |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current ChunkLineStatusAll
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("ChunkLineStatusAll")->Value();
C#
// Determine the current ChunkLineStatusAll
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("ChunkLineStatusAll").Value();
Python
# Determine the current ChunkLineStatusAll (int)
value = nodeMapRemoteDevice.FindNode("ChunkLineStatusAll").Value()