KMotion_dotNet.KM_CoordMotion.DownloadDoneSegments C# (CSharp) Method

DownloadDoneSegments() public method

Download all computed segments from the Trajectory Planner to the device buffer
public DownloadDoneSegments ( ) : void
return void
        public void DownloadDoneSegments()
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_DownloadDoneSegments(_InstanceHandle);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "DownloadDoneSegments"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "DownloadDoneSegments"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "DownloadDoneSegments"));
            }
        }
        /// <summary>
KM_CoordMotion