AcquisitionFrameRateRaw
Top  Previous  Next

Description

Returns or sets the relative value of the camera frame rate, typically in KHz. This property is deprecated and replaced by AcquisitionFrameRate.


Syntax


[VB]
objActiveGige.AcquisitionFrameRateRaw [= Value]


[C/C++]
HRESULT get_AcquisitionFrameRateRaw( long *pValue );
HRESULT put_AcquisitionFrameRateRaw( long Value );



Data Type
[VB]

Integer

Parameters
[C/C++]

pValue [out,retval]  
Pointer to the current frame rate value  
Value [in]  
The frame rate to be set  


Return Values


S_OK  
Success  
E_NOINTERFACE        
The feature is not available for the selected camera  
E_INVALIDARG  
The value is out of range  
E_FAIL  
Failure to set the feature value  
 

Example


The following VB example sets the frame rate to 30.3:

ActiveGige1.AcquisitionFrameRateRaw = 30300
 

Remarks


The feature controls the rate at which frames are captured when the frame trigger is disabled. The valid range of the frame rate values can be obtained by the GetFeatureMin and GetFeatureMax methods.

Note that the property is available only if the currently selected camera supports the AcquisitionFrameRateRaw feature.