KMotion_dotNet.KM_CoordMotion.Get_PreviouslyStopped C# (CSharp) Method

Get_PreviouslyStopped() private method

Property getter Accessor for PreviouslyStopped
private Get_PreviouslyStopped ( ) : PREV_STOP_TYPE
return PREV_STOP_TYPE
        private PREV_STOP_TYPE Get_PreviouslyStopped()
        {
            try
            {
                return KM_dotnet_Interop_CoordMotion_Get_PreviouslyStopped(_InstanceHandle);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "Get_PreviouslyStopped"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "Get_PreviouslyStopped"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "Get_PreviouslyStopped"));
            }
        }
        /// <summary>
KM_CoordMotion