DgsComboBoxGetItemText

From Multi Theft Auto: Wiki

This function retrieves the text from a specific dgs combobox item.

Syntax

string dgsComboBoxGetItemText ( element comboBox, int itemId )

Required Arguments

  • comboBox: The dgs combobox containing the item you're interested in
  • itemId: The index of the item

Returns

Returns the text of the item if the arguments are right, false otherwise.

Example

This outputs selected item's text to the chatbox.

DGS = exports.dgs

comboBox = DGS:dgsCreateComboBox(200,200,100,30,"test",false)
for i=1,5 do
	DGS:dgsComboBoxAddItem(comboBox,i.."test")
end

addCommandHandler("getText",function(cmd, text)
	local item = DGS:dgsComboBoxGetSelectedItem(comboBox)
	if item ~= -1 then
		local text = DGS:dgsComboBoxGetItemText(comboBox, item)
		outputChatBox("You selected item "..item.." , text: "..text)
	end
end)

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D