IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
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<IDSImaging.Peak.API.Core.Nodes.CommandNode>("InterfaceUpdateList").Execute();
// Check if the command has finished before you continue (optional)
nodeMapSystem.FindNode<IDSImaging.Peak.API.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()