KMotion_dotNet.KM_CoordMotion.DoSpecialCommand C# (CSharp) Method

DoSpecialCommand() public method

Perform segment execution
public DoSpecialCommand ( int segment ) : void
segment int segment index
return void
        public void DoSpecialCommand(int segment)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_DoSpecialCommand(_InstanceHandle, segment);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "DoSpecialCommand"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "DoSpecialCommand"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "DoSpecialCommand"));
            }
        }
        /// <summary>
KM_CoordMotion