SoftTrigger
Top  Previous  Next

Description

Generates an internal trigger signal.


Syntax


[VB]
objActiveGige.SoftTrigger


[C/C++]
HRESULT SoftTrigger();


Parameters

None  


Return Values


S_OK  
Success  
E_FAIL  
Failure.  


Example


This VB example demonstrates the use of the software trigger:

Private Sub 
Form_Load()

ActiveGige1.Acquire = 
True
ActiveGige1.TriggerSource = "Software"
ActiveGige1.Trigger = True
End Sub

Private Sub
 SoftTrig_Click()
ActiveGige1.SoftTrigger
End Sub
 

Remarks


Use SoftTrigger to simulate the trigger signal. Note that this method will only have effect if TriggerSource is set to the "Software".