static public int get_scrollSpeed(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIScrollToSelectionXY self = (UnityEngine.UI.Extensions.UIScrollToSelectionXY)checkSelf(l);
         pushValue(l, self.scrollSpeed);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_scrollSpeed(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIScrollToSelectionXY self = (UnityEngine.UI.Extensions.UIScrollToSelectionXY)checkSelf(l);
         System.Single v;
         checkType(l, 2, out v);
         self.scrollSpeed = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }