IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Returns the IP address of the selected gateway entry of this interface.
Name |
GevInterfaceGateway[GevInterfaceGatewaySelector] |
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 GevInterfaceGateway, make sure GevInterfaceGatewaySelector is set correctly
// Set GevInterfaceGatewaySelector to 0
nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceGatewaySelector")->SetValue(0);
// Determine the current GevInterfaceGateway
int64_t value = nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceGateway")->Value();
C#
// Before accessing GevInterfaceGateway, make sure GevInterfaceGatewaySelector is set correctly
// Set GevInterfaceGatewaySelector to 0
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevInterfaceGatewaySelector").SetValue(0);
// Determine the current GevInterfaceGateway
long value = nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevInterfaceGateway").Value();
Python
# Before accessing GevInterfaceGateway, make sure GevInterfaceGatewaySelector is set correctly
# Set GevInterfaceGatewaySelector to 0 (int)
nodeMapInterface.FindNode("GevInterfaceGatewaySelector").SetValue(0)
# Determine the current GevInterfaceGateway (int)
value = nodeMapInterface.FindNode("GevInterfaceGateway").Value()