TriggerDelayAbs
Top  Previous  Next

Description

Returns or sets the absolute value of the trigger delay in microseconds. This property is deprecated and replaced by TriggerDelay.


Syntax


[VB]
objActiveGige.TriggerDelayAbs [= Value]


[C/C++]
HRESULT get_TriggerDelayAbs( float *pValue );
HRESULT put_TriggerDelayAbs( float Value );



Data Type
[VB]

Single

Parameters
[C/C++]

pValue [out,retval]  
Pointer to the current trigger delay value  
Value [in]  
The trigger delay value 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 a hardware trigger which will start the capture of each frame on the rising edge of the signal coming from the physical input Line1:

ActiveGige1.TriggerSelector = "FrameStart"
ActiveGige1.Trigger = 
True

ActiveGige1.TriggerActivation = "RisingEdge"
ActiveGige1.TriggerDelayAbs = 10000.
ActiveGige1.TriggerSource = "Line1"
ActiveGige1.Acquire = 
True

 

Remarks


Trigger delay changes the time after the trigger reception before effectively activating it. Prior to setting up this property, select a corresponding trigger configuration with TriggerSelector. The valid property range can be retrieved by the GetFeatureMin and GetFeatureMax methods.

Note that the property is available only if the currently selected camera supports the TriggerDelay or TriggerDelayAbs feature per GenICam standard.