The RMP Motion Controller APIs

◆ UserVersionSet()

void UserVersionSet ( int32_t  version)
Description:
UserVersionGet will store a int32_t value which can be retrieved UserVersionGet.
Returns
version User Version.
Remarks
This function is also available in RapidSequencer.

Part of the Information method group.

Sample Code:
// -- C++ -- //
int32_t userVersion = 1;
controller->UserVersionSet(userVersion);
printf("The User Version has been set to %d", controller->UserVersionGet());
// -- C# -- //
int userVersion = 1;
controller.UserVersionSet(userVersion);
Console.WriteLine("The User Version has been set to {0}.", controller.UserVersionGet());
See also
UserVersionGet
RSI::RapidCode::MotionController::UserVersionSet
void UserVersionSet(int32_t version)
Sets a customer designed Version for the application.
RSI::RapidCode::MotionController::UserVersionGet
int32_t UserVersionGet()
Get a customer designated Version for the application.