KMotion_dotNet.KM_CoordMotion.ClearHalt C# (CSharp) Method

ClearHalt() public method

Clear any exisiting halts
public ClearHalt ( ) : void
return void
        public void ClearHalt()
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_Clear_Halt(_InstanceHandle);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "ClearHalt"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "ClearHalt"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "ClearHalt"));
            }
        }
        /// <summary>
KM_CoordMotion