IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the camera's vendor name.
Name |
DeviceVendorName |
Category |
|
Interface |
String |
Access |
Read |
Unit |
- |
Visibility |
Beginner |
Values |
Camera specific |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Determine the current DeviceVendorName
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::StringNode>("DeviceVendorName")->Value();
C#
// Determine the current DeviceVendorName
string value = nodeMapRemoteDevice.FindNode<peak.core.nodes.StringNode>("DeviceVendorName").Value();
Python
# Determine the current DeviceVendorName (str)
value = nodeMapRemoteDevice.FindNode("DeviceVendorName").Value()