void InterruptEnableSet ( bool  enable  ) 

Description:
InterruptEnableSet - If true, this controller will generate interrupts. If false, the controller will not generate interrupts.
Parameters:
enable True = interrupts are enabled.
Sample Code:
We plan to use interrupts for this controller.
   // -- C++ -- //
  controller->InterruptEnableSet(true);
   // -- C# -- //
  controller.InterruptEnableSet(true);
See also:
InterruptWait

Reimplemented from RapidCodeInterrupt.

Examples:
controllerInterrupts.cpp, IOPointInterrupts.cs, RecorderInterrupts.cs, and RecordOnMotion.cs.