static public int SetScrollable(IntPtr l)
 {
     try {
         mg.org.KUI.KScrollView self = (mg.org.KUI.KScrollView)checkSelf(l);
         System.Boolean         a1;
         checkType(l, 2, out a1);
         self.SetScrollable(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 /// <summary>
 /// 设置是否可以滚动
 /// </summary>
 /// <param name="value"></param>
 public void SetScrollable(bool value)
 {
     m_scrollView.SetScrollable(value);
 }