IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Saves the current settings of the features defined in SequencerFeatureSelector to the selected sequencer set. The sequencer set is defined in the SequencerSetSelector.
Name |
SequencerSetSave[SequencerSetSelector] |
Category |
|
Interface |
Command |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
A sequencer set can only be saved if SequencerConfigurationMode = "On". |
Code example
C++
// SequencerSetSave refers to the entry selected by SequencerSetSelector
// Set SequencerSetSelector to 0
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SequencerSetSelector")->SetValue(0);
// Execute SequencerSetSave
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("SequencerSetSave")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("SequencerSetSave")->WaitUntilDone();
C#
// SequencerSetSave refers to the entry selected by SequencerSetSelector
// Set SequencerSetSelector to 0
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SequencerSetSelector").SetValue(0);
// Execute SequencerSetSave
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("SequencerSetSave").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("SequencerSetSave").WaitUntilDone();
Python
# SequencerSetSave refers to the entry selected by SequencerSetSelector
# Set SequencerSetSelector to 0 (int)
nodeMapRemoteDevice.FindNode("SequencerSetSelector").SetValue(0)
# Execute SequencerSetSave
nodeMapRemoteDevice.FindNode("SequencerSetSave").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("SequencerSetSave").WaitUntilDone()