KMotion_dotNet.KM_CoordMotion.MeasurePointAppendToFile C# (CSharp) Method

MeasurePointAppendToFile() public method

Write position data to file
public MeasurePointAppendToFile ( string command ) : void
command string file name to append to
return void
        public void MeasurePointAppendToFile(string command)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_MeasurePointAppendToFile(_InstanceHandle, command);
                //process return value
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "MeasurePointAppendToFile"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "MeasurePointAppendToFile"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "MeasurePointAppendToFile"));
            }
        }
KM_CoordMotion