Question:
-How to write the code for exposure time?
-How the codes should be for us to set the shutter in absolute values (instead of raw value)?


Solution:

- ptrExposureTimeAbs->SetValue(nShutterRaw);
-Or ptrExposureTimeRaw->SetValue(nShutterRaw)
-//if(strCam=="acA1920-40gm")
nShutterRaw=nShutterInUs;
//else
// nShutterRaw=nShutterInUs/20.0;


- ExposureTimeAbs is a float parameter and ExposureTimeRaw is an integer.