static public int constructor(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.ScrollRectEx o;
         o = new UnityEngine.UI.Extensions.ScrollRectEx();
         pushValue(l, o);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int OnScroll(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.ScrollRectEx    self = (UnityEngine.UI.Extensions.ScrollRectEx)checkSelf(l);
         UnityEngine.EventSystems.PointerEventData a1;
         checkType(l, 2, out a1);
         self.OnScroll(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }