long RecorderRecordDataValueGet ( long  index  ) 

Description:
RecorderRecordDataValueGet gets one value from a retrieved record.
Parameters:
index index of the recorded value, within the record
Returns:
the value from the index of the record
Sample Code:
for(int i = 0; i < recordsAvailable; i++)
{
             
     controller.RecorderRecordDataRetrieve(); // retrieves record
  
    Console.WriteLine("recordData" + i.ToString() + " : " + controller.RecorderRecordDataValueGet(0) );
}
See also:
RecorderRecordDataRetrieve
Examples:
RecorderInterrupts.cs, and RecordOnMotion.cs.