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

MultiCamObject::GetParam Method

Returns the value of a MultiCam parameter.

[C++]

void MultiCamObject::GetParam(MCPARAMID, int&);

void MultiCamObject::GetParam(MCPARAMID, unsigned int&);

void MultiCamObject::GetParam(MCPARAMID, double&);

void MultiCamObject::GetParam(MCPARAMID, Surface*&);

void MultiCamObject::GetParam(MCPARAMID, char*, int);

void MultiCamObject::GetParam(MCPARAMID, long long int&);

void MultiCamObject::GetParam(MCPARAMID, void*&);

void MultiCamObject::GetParam(const char*, int&);

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

void MultiCamObject::GetParam(const char*, double&);

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

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

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

void MultiCamObject::GetParam(const char*, void*&);

Remarks

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

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

See Also

MultiCamObject Class | MultiCamObject::SetParam