IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Selector for the different gateway entries for this interface. The selector is 0-based.
Name |
GevInterfaceGatewaySelector |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current GevInterfaceGatewaySelector
int64_t value = nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceGatewaySelector")->Value();
// Set GevInterfaceGatewaySelector to 0
nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("GevInterfaceGatewaySelector")->SetValue(0);
C#
// Determine the current GevInterfaceGatewaySelector
long value = nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevInterfaceGatewaySelector").Value();
// Set GevInterfaceGatewaySelector to 0
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevInterfaceGatewaySelector").SetValue(0);
Python
# Determine the current GevInterfaceGatewaySelector (int)
value = nodeMapInterface.FindNode("GevInterfaceGatewaySelector").Value()
# Set GevInterfaceGatewaySelector to 0 (int)
nodeMapInterface.FindNode("GevInterfaceGatewaySelector").SetValue(0)