MotionController Axis MultiAxis IO IOPoint NetworkNode RsiError
Sample Apps Changelog

RapidCode API

◆ RecorderRecordDataValueGet() [1/3]

int32 RecorderRecordDataValueGet ( int32  index)
pure virtual

Get one value from a retrieved record.

Description:
RecorderRecordDataValueGet gets one value from a retrieved record.
Parameters
indexindex 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
Recorder.cs.