static public int get_maximumPossiblePressure(IntPtr l)
 {
     try {
         mg.org.KUI.KButton self = (mg.org.KUI.KButton)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.maximumPossiblePressure);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int get_isPassPoint(IntPtr l)
 {
     try {
         mg.org.KUI.KButton self = (mg.org.KUI.KButton)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.isPassPoint);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_isPassPoint(IntPtr l)
 {
     try {
         mg.org.KUI.KButton self = (mg.org.KUI.KButton)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.isPassPoint = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }