GEV Server (CVGevServer.dll) 15.0
GenICam Nodes

Enumerations

enum  TAccessMode {
  AM_NI = 0 , AM_NA , AM_RO , AM_WO ,
  AM_RW
}
 Access mode of a node.
More...
 
enum  TCachingMode { CM_NoCache = 0 , CM_WriteThrough , CM_WriteAround }
 Information on how the nodes cache their values.
More...
 
enum  TNodeInfo
 Defines commands to retrieve information about a node.
 
enum  TNodeList
 Definition for functions which list nodes to access.

 
enum  TNodeType
 Type of a node handle object.
 
enum  TNumberRepresentation
 Defines possible representation of a number.
 
enum  TVerifyMode
 Sets the verification mode in a node for readand write access. More...
 
enum  TVisibility
 This is the recommended visibility level. More...
 

Detailed Description

Enumeration Type Documentation

◆ TAccessMode

Access mode of a node.

Enumerator
AM_NI 

Node is not implemented in the device.

AM_NA 

Node is currently not available.

AM_RO 

Node is only readable.

AM_WO 

Node is only writable.

AM_RW 

Node is readable and writable.

◆ TCachingMode

Information on how the nodes cache their values.

Enumerator
CM_NoCache 

No caching used.
Values are always read or written from/to device.

CM_WriteThrough 

Write to cache and register.
Write to cache and device. Reading will be performed on cache.

CM_WriteAround 

Write to register, cache is updated on next read.
Write to device. Next read will write the cache. Ongoing reads read the cache (until next write).

◆ TVerifyMode

Sets the verification mode in a node for readand write access.

If verification is enabledand the written / read value is invalid the get or set function returns an CVC access or parameter error.

◆ TVisibility

This is the recommended visibility level.

UIs can decide whether or not to show certain feature nodes based on their visibility.