The RMP Motion Controller APIs

◆ UserVersionSet()

void UserVersionSet ( int32_t version)
Description:
UserVersionGet will store a int32_t value which can be retrieved with UserVersionGet.
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());
void UserVersionSet(int32_t version)
Sets a customer designed Version for the application.
int32_t UserVersionGet()
Get a customer designated Version for the application.
// -- C# -- //
int userVersion = 1;
controller.UserVersionSet(userVersion);
Console.WriteLine("The User Version has been set to {0}.", controller.UserVersionGet());
See also
UserVersionGet