KMotion_dotNet.KM_CoordMotion.Set_Simulate C# (CSharp) Method

Set_Simulate() private method

Property setter Accessor for simulation
private Set_Simulate ( bool value ) : void
value bool flag to determine simulation state
return void
        private void Set_Simulate(bool value)
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_Set_Simulate(_InstanceHandle, value);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "Set_Simulate"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "Set_Simulate"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "Set_Simulate"));
            }
        }
        /// <summary>
KM_CoordMotion