KMotion_dotNet.KM_CoordMotion.SetFeedRateRapidOverride C# (CSharp) Method

SetFeedRateRapidOverride() private method

Sets the current Rapid Feedrate override
private SetFeedRateRapidOverride ( double value ) : void
value double override percentage
return void
        private void SetFeedRateRapidOverride(double value)
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_Set_FeedRateRapidOverride(_InstanceHandle, value);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "SetFeedRateRapidOverride"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "SetFeedRateRapidOverride"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "SetFeedRateRapidOverride"));
            }
        }
        /// <summary>
KM_CoordMotion