IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the full path to the GenTL Producer including file name and extension. Corresponds to the TL_INFO_PATHNAME command of "TLGetInfo" function.
Name |
TLPath |
Category |
|
Interface |
String |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Determine the current TLPath
std::string value = nodeMapSystem->FindNode<peak::core::nodes::StringNode>("TLPath")->Value();
C#
// Determine the current TLPath
string value = nodeMapSystem.FindNode<peak.core.nodes.StringNode>("TLPath").Value();
Python
# Determine the current TLPath (str)
value = nodeMapSystem.FindNode("TLPath").Value()