KMotion_dotNet.KM_CoordMotion.CheckMotionHalt C# (CSharp) Method

CheckMotionHalt() public method

Cehecks for a motion halt
public CheckMotionHalt ( bool coord ) : int
coord bool specify axis mapped axes only
return int
        public int CheckMotionHalt(bool coord)
        {
            int retval = -1;
            try
            {
                retval = KM_dotnet_Interop_CoordMotion_CheckMotionHalt(_InstanceHandle, coord);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "CheckMotionHalt"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "CheckMotionHalt"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "CheckMotionHalt"));
            }
            return retval;
        }
        /// <summary>
KM_CoordMotion