Ejemplo n.º 1
0
 public InputListenerList(InputListenerList other) : this(BitesPINVOKE.new_InputListenerList__SWIG_1(InputListenerList.getCPtr(other)), true)
 {
     if (BitesPINVOKE.SWIGPendingException.Pending)
     {
         throw BitesPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Ejemplo n.º 2
0
 public InputListenerChain(InputListenerList chain) : this(BitesPINVOKE.new_InputListenerChain__SWIG_1(InputListenerList.getCPtr(chain)), true)
 {
     if (BitesPINVOKE.SWIGPendingException.Pending)
     {
         throw BitesPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Ejemplo n.º 3
0
 public InputListenerListEnumerator(InputListenerList collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Ejemplo n.º 4
0
 public void SetRange(int index, InputListenerList values)
 {
     BitesPINVOKE.InputListenerList_SetRange(swigCPtr, index, InputListenerList.getCPtr(values));
     if (BitesPINVOKE.SWIGPendingException.Pending)
     {
         throw BitesPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Ejemplo n.º 5
0
        public static InputListenerList Repeat(InputListener value, int count)
        {
            global::System.IntPtr cPtr = BitesPINVOKE.InputListenerList_Repeat(InputListener.getCPtr(value), count);
            InputListenerList     ret  = (cPtr == global::System.IntPtr.Zero) ? null : new InputListenerList(cPtr, true);

            if (BitesPINVOKE.SWIGPendingException.Pending)
            {
                throw BitesPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Ejemplo n.º 6
0
        public InputListenerList GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = BitesPINVOKE.InputListenerList_GetRange(swigCPtr, index, count);
            InputListenerList     ret  = (cPtr == global::System.IntPtr.Zero) ? null : new InputListenerList(cPtr, true);

            if (BitesPINVOKE.SWIGPendingException.Pending)
            {
                throw BitesPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Ejemplo n.º 7
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputListenerList obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }