IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Activates the inclusion of the chunk data in the payload of the image.
Name |
ChunkModeActive |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
True |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Chunk data is included in the payload of the image.
•False: Chunk data is not included in the payload of the image.
Code example
C++
// Determine the current status of ChunkModeActive
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("ChunkModeActive")->Value();
// Set ChunkModeActive to true
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("ChunkModeActive")->SetValue(true);
C#
// Determine the current status of ChunkModeActive
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("ChunkModeActive").Value();
// Set ChunkModeActive to true
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("ChunkModeActive").SetValue(true);
Python
# Determine the current status of ChunkModeActive (bool)
value = nodeMapRemoteDevice.FindNode("ChunkModeActive").Value()
# Set ChunkModeActive to true (bool)
nodeMapRemoteDevice.FindNode("ChunkModeActive").SetValue(True)