KMotion_dotNet.KM_CoordMotion.WaitForMoveXYZABCFinished C# (CSharp) Method

WaitForMoveXYZABCFinished() public method

Blocks calling thread until all commanded motion is complete
public WaitForMoveXYZABCFinished ( ) : void
return void
        public void WaitForMoveXYZABCFinished()
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_WaitForMoveXYZABCFinished(_InstanceHandle);
                //process return value
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "WaitForMoveXYZABCFinished"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "WaitForMoveXYZABCFinished"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "WaitForMoveXYZABCFinished"));
            }
        }
KM_CoordMotion