void RecorderRecordDataRetrieve (  ) 

Description:
RecorderRecordDataRetrieve retrieves one record from the Recorder, and stores it in the MotionController.
Returns:
Sample Code:
for(int i = 0; i < recordsAvailable; i++)
{
             
     controller.RecorderRecordDataRetrieve(); // retrieves record
  
    Console.WriteLine("recordData" + i.ToString() + " : " + controller.RecorderRecordDataValueGet(0) );
}
See also:
RecorderRecordDataValueGet
Examples:
RecorderInterrupts.cs, and RecordOnMotion.cs.