MultiCam Boards Documentation > MultiCam Documentation > MultiCam C++ Reference > Classes > MultiCamObject Class > MultiCamObject::SetParam Method

MultiCamObject::SetParam Method

Sets the value of a MultiCam parameter.

[C++]

void MultiCamObject::SetParam(MCPARAMID, int);

void MultiCamObject::SetParam(MCPARAMID, unsigned int);

void MultiCamObject::SetParam(MCPARAMID, double);

void MultiCamObject::SetParam(MCPARAMID, Surface&);

void MultiCamObject::SetParam(MCPARAMID, const char*);

void MultiCamObject::SetParam(MCPARAMID, long long int);

void MultiCamObject::SetParam(MCPARAMID, void*);

void MultiCamObject::SetParam(const char*, int);

void MultiCamObject::SetParam(const char*, unsigned int);

void MultiCamObject::SetParam(const char*, double);

void MultiCamObject::SetParam(const char*, Surface&);

void MultiCamObject::SetParam(const char*, const char*);

void MultiCamObject::SetParam(const char*, long long int);

void MultiCamObject::SetParam(const char*, void*);

Remarks

There are two ways to designate the parameter: by identifier and by name.

Independently of the parameter type, the value may be passed as int, unsigned int, double or character string. In addition, some parameters have the Surface type.

See Also

MultiCamObject Class | MultiCamObject::GetParam