Exemple #1
0
 /// <summary>Creates an instance of the fixed window implementation</summary>
 /// <param name="windowID">The window ID of an existing HALCON window</param>
 public HDevOpFixedWindowImpl(HTuple windowID)
 {
     if (windowID.Length != 1)
     {
         HDevEngineException.ThrowGeneric("Please specify exactly one window ID");
     }
     this.activeID = windowID.Clone();
 }
Exemple #2
0
 internal static void ThrowGeneric(string message)
 {
     HDevEngineException.ThrowGeneric(message, "");
 }