KMotion_dotNet.KM_CoordMotion.GetAxisDefinitions C# (CSharp) Method

GetAxisDefinitions() public method

Get the assignment of KFLOP axis Channels to GCode Axes XYZABC, -1 indicates unused/unassigned axis
public GetAxisDefinitions ( int &x, int &y, int &z, int &a, int &b, int &c ) : void
x int
y int
z int
a int
b int
c int
return void
        public void GetAxisDefinitions(ref int x, ref int y, ref int z, ref int a, ref int b, ref int c)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_GetAxisDefinitions(_InstanceHandle, ref  x, ref  y, ref  z, ref  a, ref  b, ref  c);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "GetAxisDefinitions"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "GetAxisDefinitions"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "GetAxisDefinitions"));
            }
        }
        /// <summary>
KM_CoordMotion