static public int get_selectionMask(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.SelectionBox self = (UnityEngine.UI.Extensions.SelectionBox)checkSelf(l);
         pushValue(l, self.selectionMask);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int GetAllSelected(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.SelectionBox self = (UnityEngine.UI.Extensions.SelectionBox)checkSelf(l);
         var ret = self.GetAllSelected();
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_selectionMask(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.SelectionBox self = (UnityEngine.UI.Extensions.SelectionBox)checkSelf(l);
         UnityEngine.RectTransform v;
         checkType(l, 2, out v);
         self.selectionMask = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_art(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.SelectionBox self = (UnityEngine.UI.Extensions.SelectionBox)checkSelf(l);
         UnityEngine.Sprite v;
         checkType(l, 2, out v);
         self.art = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_onSelectionChange(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.SelectionBox self = (UnityEngine.UI.Extensions.SelectionBox)checkSelf(l);
         UnityEngine.UI.Extensions.SelectionBox.SelectionEvent v;
         checkType(l, 2, out v);
         self.onSelectionChange = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }