Ejemplo n.º 1
0
 static extern void KM_dotnet_Interop_CoordMotion_Set_PreviouslyStopped(IntPtr handle, PREV_STOP_TYPE value);
Ejemplo n.º 2
0
 static extern void KM_dotnet_Interop_CoordMotion_Set_PreviouslyStopped(IntPtr handle, PREV_STOP_TYPE value);
Ejemplo n.º 3
0
 /// <summary>
 /// Property setter Accessor for PreviouslyStopped
 /// </summary>
 /// <param name="value">code indicating type of stop that occurred</param>
 private void Set_PreviouslyStopped(PREV_STOP_TYPE value)
 {
     try
     {
         KM_dotnet_Interop_CoordMotion_Set_PreviouslyStopped(_InstanceHandle, value);
     }
     catch (DllNotFoundException e)
     {
         throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
             this.ToString(), "Set_PreviouslyStopped"));
     }
     catch (EntryPointNotFoundException e)
     {
         throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
            this.ToString(), "Set_PreviouslyStopped"));
     }
     catch (Exception e)
     {
         throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
           this.ToString(), "Set_PreviouslyStopped"));
     }
 }