KMotion_dotNet.KM_CoordMotion.Set_PreviouslyStopped C# (CSharp) Method

Set_PreviouslyStopped() private method

Property setter Accessor for PreviouslyStopped
private Set_PreviouslyStopped ( PREV_STOP_TYPE value ) : void
value PREV_STOP_TYPE code indicating type of stop that occurred
return void
        private void Set_PreviouslyStopped(PREV_STOP_TYPE value)
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_Set_PreviouslyStopped(_InstanceHandle, value);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "Set_PreviouslyStopped"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "Set_PreviouslyStopped"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "Set_PreviouslyStopped"));
            }
        }
KM_CoordMotion