logValuesPerRecord (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

ALL

Firmware version:

1.00 / 1.00.00


logValuesPerRecord will report the number of values logged in each record. This was set with the logInitialize() function.

 

Input:

None

 

Returns: DINT

Number of values logged in each record.

 

Declaration:

FUNCTION logValuesPerRecord : SINT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
VAR
  numvalues : SINT;
END_VAR
 
BEGIN
  ...
  // Get number of values per record
  numvalues:=logValuesPerRecord();
  ...
END;
 
END_PROGRAM;