IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Controls the activation of the dynamic host configuration protocol IP.
Name |
GevCurrentIPConfigurationDHCP |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Beginner |
Values |
True |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Enables DHCP.
•False: Disables DHCP.
|
The access changes to read-only during an acquisition. |
Code example
C++
// Determine the current status of GevCurrentIPConfigurationDHCP
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevCurrentIPConfigurationDHCP")->Value();
// Set GevCurrentIPConfigurationDHCP to true
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevCurrentIPConfigurationDHCP")->SetValue(true);
C#
// Determine the current status of GevCurrentIPConfigurationDHCP
bool value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("GevCurrentIPConfigurationDHCP").Value();
// Set GevCurrentIPConfigurationDHCP to true
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("GevCurrentIPConfigurationDHCP").SetValue(true);
Python
# Determine the current status of GevCurrentIPConfigurationDHCP (bool)
value = nodeMapRemoteDevice.FindNode("GevCurrentIPConfigurationDHCP").Value()
# Set GevCurrentIPConfigurationDHCP to true (bool)
nodeMapRemoteDevice.FindNode("GevCurrentIPConfigurationDHCP").SetValue(True)