void InterruptEnableSet ( bool  enable  ) 
Description:
InterruptEnableSet - If true, this Axis/MultiAxis will configure the controller to generate interrupts specific to this Axis/MultiAxis. If false, the controller is configured to not generate interrupts for this Axis/MultiAxis.
Parameters:
enable True = interrupts are enabled.
Sample Code:
We plan to use interrupts for this Axis/MultiAxis.
   // -- C++ -- //
  axis->InterruptEnableSet(true);
      - or -  
  multiaxis->InterruptEnableSet(true);
   // -- C# -- //
  axis.InterruptEnableSet(true);
      - or -  
  multiaxis.InterruptEnableSet(true);
See also:
InterruptWait

Reimplemented from RapidCodeInterrupt.

Examples:
Capture.cpp, Capture.cs, customHome.cpp, HomeThreads.cs, IOPointInterrupts.cs, userLimit.cpp, and userLimitGainChangeBasedOnPosition.cpp.