KMotion_dotNet.KM_CoordMotion.OutputSegment C# (CSharp) 메소드

OutputSegment() 공개 메소드

Output given segment
public OutputSegment ( int segment ) : void
segment int segment index to output
리턴 void
        public void OutputSegment(int segment)
        {
            try
            {
                var returnvalue = KM_dotnet_Interop_CoordMotion_OutputSegment(_InstanceHandle, segment);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "OutputSegment"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "OutputSegment"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "OutputSegment"));
            }
        }
        /// <summary>
KM_CoordMotion