Returns the user readable name of the device. If this is not defined in the device this should be "Vendor model (ID)". Corresponds to the DEVICE_INFO_DISPLAYNAME command of "DevGetInfo" function.
Name |
DeviceDisplayName |
Category |
|
Interface |
String |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Determine the current DeviceDisplayName
std::string value = nodeMapLocalDevice->FindNode<peak::core::nodes::StringNode>("DeviceDisplayName")->Value();
C#
// Determine the current DeviceDisplayName
string value = nodeMapLocalDevice.FindNode<peak.core.nodes.StringNode>("DeviceDisplayName").Value();
Python
# Determine the current DeviceDisplayName (str)
value = nodeMapLocalDevice.FindNode("DeviceDisplayName").Value()