IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Resets the selected gain to its default value.
Name |
GainResetToDefault[GainSelector] |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Beginner |
Values |
- |
Standard |
IDS |
Availability uEye+ |
- |
Availability uEye |
|
Code example
C++
// Execute GainResetToDefault
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GainResetToDefault")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GainResetToDefault")->WaitUntilDone();
C#
// Execute GainResetToDefault
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("GainResetToDefault").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("GainResetToDefault").WaitUntilDone();
Python
# Execute GainResetToDefault
nodeMapRemoteDevice.FindNode("GainResetToDefault").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("GainResetToDefault").WaitUntilDone()