static public int get_AvailableOptions(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         pushValue(l, self.AvailableOptions);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int Awake(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         self.Awake();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_AvailableOptions(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox  self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         System.Collections.Generic.List <System.String> v;
         checkType(l, 2, out v);
         self.AvailableOptions = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_disabledTextColor(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         UnityEngine.Color v;
         checkType(l, 2, out v);
         self.disabledTextColor = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int ToggleDropdownPanel(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         System.Boolean a1;
         checkType(l, 2, out a1);
         self.ToggleDropdownPanel(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int OnValueChanged(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         self.OnValueChanged(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_ItemsToDisplay(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         int v;
         checkType(l, 2, out v);
         self.ItemsToDisplay = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_ScrollBarWidth(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         float v;
         checkType(l, 2, out v);
         self.ScrollBarWidth = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_OnSelectionChanged(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.AutoCompleteComboBox self = (UnityEngine.UI.Extensions.AutoCompleteComboBox)checkSelf(l);
         System.Action <System.Int32> v;
         int op = LuaDelegation.checkDelegate(l, 2, out v);
         if (op == 0)
         {
             self.OnSelectionChanged = v;
         }
         else if (op == 1)
         {
             self.OnSelectionChanged += v;
         }
         else if (op == 2)
         {
             self.OnSelectionChanged -= v;
         }
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }