FairyGUI.GComboBox.GComboBox C# (CSharp) Method

GComboBox() public method

public GComboBox ( ) : System
return System
        public GComboBox()
        {
            visibleItemCount = UIConfig.defaultComboBoxVisibleItemCount;
            _itemsUpdated = true;
            _selectedIndex = -1;
            _items = new string[0];
            _values = new string[0];
            _popupDirection = "down";

            onChanged = new EventListener(this, "onChanged");
        }