IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the IP address of the selected subnet of this interface.
Name |
GevInterfaceSubnetIPAddress[GevInterfaceSubnetSelector] |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
0 … 4294967295 Increment: 1 |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Before accessing GevInterfaceSubnetIPAddress, make sure GevInterfaceSubnetSelector is set correctly
// Set GevInterfaceSubnetSelector to 0
nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceSubnetSelector")->SetValue(0);
// Determine the current GevInterfaceSubnetIPAddress
int64_t value = nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceSubnetIPAddress")->Value();
C#
// Before accessing GevInterfaceSubnetIPAddress, make sure GevInterfaceSubnetSelector is set correctly
// Set GevInterfaceSubnetSelector to 0
nodeMapInterface.FindNode<peak.core.nodes.IntegerNode>("GevInterfaceSubnetSelector").SetValue(0);
// Determine the current GevInterfaceSubnetIPAddress
long value = nodeMapInterface.FindNode<peak.core.nodes.IntegerNode>("GevInterfaceSubnetIPAddress").Value();
Python
# Before accessing GevInterfaceSubnetIPAddress, make sure GevInterfaceSubnetSelector is set correctly
# Set GevInterfaceSubnetSelector to 0 (int)
nodeMapInterface.FindNode("GevInterfaceSubnetSelector").SetValue(0)
# Determine the current GevInterfaceSubnetIPAddress (int)
value = nodeMapInterface.FindNode("GevInterfaceSubnetIPAddress").Value()