Please enable JavaScript to view this site.

IDS peak 2.20.0 / uEye+ firmware 3.80

IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.

Returns the name of the device vendor. This value only changes on execution of the DeviceUpdateList command. Corresponds to the DeviceVendorName feature of the RemoteDevice and is retrieved during device discovery.

Name

DeviceVendorName[DeviceSelector]

Category

DeviceEnumeration

Interface

String

Access

Read

Unit

-

Visibility

Expert

Values

-

Standard

GenTL SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

icon-ui-gige icon-ui-usb2 icon-ui-usb3

Code Example

C++

// Before accessing DeviceVendorName, make sure DeviceSelector is set correctly
// Set DeviceSelector to 0
nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("DeviceSelector")->SetValue(0);
// Determine the current DeviceVendorName
std::string value = nodeMapInterface->FindNode<peak::core::nodes::StringNode>("DeviceVendorName")->Value();

C#

// Before accessing DeviceVendorName, make sure DeviceSelector is set correctly
// Set DeviceSelector to 0
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("DeviceSelector").SetValue(0);
// Determine the current DeviceVendorName
string value = nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.StringNode>("DeviceVendorName").Value();

Python

# Before accessing DeviceVendorName, make sure DeviceSelector is set correctly
# Set DeviceSelector to 0 (int)
nodeMapInterface.FindNode("DeviceSelector").SetValue(0)
# Determine the current DeviceVendorName (str)
value = nodeMapInterface.FindNode("DeviceVendorName").Value()

© 2026 IDS Imaging Development Systems GmbH