XiApiTriggerSource

Description

Possible trigger source settings.

Values of this enumeration:

  • TRG_OFF - Capture of next image is automatically started after previous
  • TRG_EDGE_RISING - Capture is started on rising edge of selected input
  • TRG_EDGE_FALLING - Capture is started on falling edge of selected input
  • TRG_SOFTWARE - Capture is started with software trigger

namespace XiApiTriggerSource
{
	enum Type
	{
		TRG_OFF,
		TRG_EDGE_RISING,
		TRG_EDGE_FALLING,
		TRG_SOFTWARE
	};
}