OnDgsComboBoxStateChange

From Multi Theft Auto: Wiki

This event is triggered each time the dgs combo box state has changed.

Parameters

bool state

Source

The source of this event is the dgs combo box.

Example

DGS = exports.dgs

comboBox = DGS:dgsCreateComboBox(500,400,200,30,false)
for i=1,20 do
	DGS:dgsComboBoxAddItem(comboBox ,i)
end

function onStateChanged(state)
	outputChatBox(state == true and "Show" or "Hide")
end
addEventHandler("onDgsComboBoxStateChange", comboBox, onStateChanged)

See Also

DGS events

Plugin

Media

Color Picker

Client event functions