IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Updates the internal interface list. This feature interacts with the "TLUpdateInterfaceList" function of the GenTL Producer.
Name |
InterfaceUpdateList |
Category |
|
Interface |
Command |
Access |
Read |
Unit |
- |
Visibility |
Beginner |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Execute InterfaceUpdateList
nodeMapSystem->FindNode<peak::core::nodes::CommandNode>("InterfaceUpdateList")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapSystem->FindNode<peak::core::nodes::CommandNode>("InterfaceUpdateList")->WaitUntilDone();
C#
// Execute InterfaceUpdateList
nodeMapSystem.FindNode<peak.core.nodes.CommandNode>("InterfaceUpdateList").Execute();
// Check if the command has finished before you continue (optional)
nodeMapSystem.FindNode<peak.core.nodes.CommandNode>("InterfaceUpdateList").WaitUntilDone();
Python
# Execute InterfaceUpdateList
nodeMapSystem.FindNode("InterfaceUpdateList").Execute()
# Check if the command has finished before you continue (optional)
nodeMapSystem.FindNode("InterfaceUpdateList").WaitUntilDone()