🦠 Functions
SetButtonBrush
NComboBox:SetButtonBrush(NormalBrush, HoveredBrush, PressedBrush)
SetArrowBrush
NComboBox:SetArrowBrush(Brush)
SetItemBrush
NComboBox:SetItemBrush(SelectorFocusedBrush, ActiveHoveredBrush, ActiveBrush, InactiveHoveredBrush, InactiveBrush)
SetItemRowBrush
NComboBox:SetItemRowBrush(EvenRowBackgroundBrush, EvenRowBackgroundHoveredBrush, OddRowBackgroundBrush, OddRowBackgroundHoveredBrush)
EvenRowBackgroundHoveredBrush
OddRowBackgroundHoveredBrush
SetTextColor
NComboBox:SetTextColor(Color)
AddOption
NComboBox:AddOption(Name)
RemoveOption
NComboBox:RemoveOption(Name)
GetOption
— Returns string.
local ret = NCheckBox:GetOption(Index)
GetOptionIndex
— Returns number.
local ret = NCheckBox:GetOption(Name)
RefreshOptions
NComboBox:RefreshOptions()
ClearOptions
NComboBox:ClearOptions()
SetSelectedOption
NComboBox:SetSelectedOption(Name)
SetSelectedIndex
NComboBox:SetSelectedIndex(Index)
ClearSelection
NComboBox:ClearSelection()
GetSelectedOption
— Returns string.
local ret = NCheckBox:GetSelectedOption()
IsOpen
— Returns boolean.
local ret = NCheckBox:IsOpen()
🚀 Events
On Selection Changed
Triggered when a new item is selected in the combobox
NButton.OnSelectionChanged = function(sItem, SelectInfo)
-- On Selection Changed was called
end)
On Opening
Triggered when the combobox is opening
NButton.OnOpening = function()
-- On Opening was called
end)
On Generate Widget
Triggered when the widget is needed for the item
NButton.OnGenerateWidget = function()
-- On Generate Widget was called
return Widget
end)