MultiCam Boards Documentation > MultiCam Documentation > MultiCam User Guide > Configuration Object > How to access Board Information? > Code Examples to access Board Information > Example Program Naming a MultiCam Board

Example Program Naming a MultiCam Board

The following code assigns the name MYBOARD to the MultiCam board with DriverIndex=5.

//Connecting to driver

MCSTATUS Status = McOpenDriver(NULL);

//Renaming the board

Status = McSetParamStr(MC_BOARD, MC_NameBoard+5, "MYBOARD");

//Disconnecting from driver

Status = McCloseDriver();

The Status variable can be used for error checking.