GetAcquisitionFrameRateMin
Top  Previous  Next

Description

Returns the minimum value allowed for the camera's frame rate.


Syntax


[VB]
Value=objActiveGige.GetAcquistionFrameRateMin


[C/C++]
HRESULT GetAcquisitionFrameRateMin( float* pValue );


Data Types
[VB]

Return value: Single


Parameters
[C/C++]

pValue [out, retval]  
Pointer to the minimum value of the feature  


Return Values


S_OK  
Success  
E_NOINTERFACE        
Feature does not exist or not available  
E_FAIL  
Failure to read the value  
 

Example


This VB example uses the minimum and maximum values to initialize the slider control:

Private Sub
 Form_Load()

Slider1.Min = ActiveGige1.GetAcquisitionFrameRateMin
Slider1.Max = ActiveGige1.GetAcquisitionFrameRateMax
Slider1.Value = ActiveGige1.AcquisitionFrameRate
End Sub

 

Remarks


Note that this method is available only if the currently selected camera supports one of the following GenICam features: AcquisitionFrameRate, AcquisitionFrameRateAbs, AcquisitionFrameRateRaw.