User-defined camera name.
| Name | DeviceUserID | 
| Category | |
| Interface | String | 
| Access | Read/Write | 
| Unit | - | 
| Visibility | Beginner | 
| Values | GigE Vision cameras: user-defined string with max. 15 characters | 
| Standard | SFNC | 
| Availability uEye+ | 
 | 
| Availability uEye | - | 
Code example
C++
// Determine the current DeviceUserID
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::StringNode>("DeviceUserID")->Value();
// Set DeviceUserID to MyCamera 1 
nodeMapRemoteDevice->FindNode<peak::core::nodes::StringNode>("DeviceUserID")->SetValue("MyCamera 1");
C#
// Determine the current DeviceUserID
string value = nodeMapRemoteDevice.FindNode<peak.core.nodes.StringNode>("DeviceUserID").Value();
// Set DeviceUserID to MyCamera 1 
nodeMapRemoteDevice.FindNode<peak.core.nodes.StringNode>("DeviceUserID").SetValue("MyCamera 1");
Python
# Determine the current DeviceUserID (str)
value = nodeMapRemoteDevice.FindNode("DeviceUserID").Value()
# Set DeviceUserID to MyCamera 1 (str) 
nodeMapRemoteDevice.FindNode("DeviceUserID").SetValue("MyCamera 1")