TriggerDelayRaw
Top  Previous  Next

Description

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


Syntax


[VB]
objActiveGige.TriggerDelayRaw [= Value]


[C/C++]
HRESULT get_TriggerDelayRaw( long *pValue );
HRESULT put_TriggerDelayRaw( long Value );



Data Type
[VB]

Long

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.TriggerDelayRaw = 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.

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