KMotion_dotNet.KM_CoordMotion.ExecutionStop C# (CSharp) Method

ExecutionStop() public method

Stop the execution of current motion in a controlled number
public ExecutionStop ( ) : void
return void
        public void ExecutionStop()
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_ExecutionStop(_InstanceHandle);
                // Handle returnvalue
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "ExecutionStop"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "ExecutionStop"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "ExecutionStop"));
            }
        }
KM_CoordMotion