DgsComboBoxSetItemText

From Multi Theft Auto: Wiki

This function changes the text of a dgs combobox item.

Syntax

bool dgsComboBoxSetItemText ( element comboBox, int itemId, string/number text )

Required Arguments

  • comboBox: The dgs combobox containing the item you're interested in
  • itemId: The index of the item
  • text: The text you want to put in (Can accept numbers, which is different from gui-combobox!)

Returns

Returns true if the text was set successfully, false otherwise.

Example

This changes the text of the selected item using command setText.

DGS = exports.dgs

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

addCommandHandler("setText",function(cmd, text)
	local item = DGS:dgsComboBoxGetSelectedItem(comboBox)
	if item ~= -1 then
		DGS:dgsComboBoxSetItemText(comboBox, item, 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