DgsComboBoxRemoveItem

From Multi Theft Auto: Wiki

This function removes an item from a dgs combobox.

Syntax

bool dgsComboBoxRemoveItem( element comboBox, int itemId )

Required Arguments

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

Returns

Returns true if the item was removes successfully, false otherwise.

Example

This example removes selected item.

DGS = exports.dgs

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

addCommandHandler("remove",function (command)
	local item = DGS:dgsComboBoxGetSelectedItem(comboBox)
	local text = DGS:dgsComboBoxGetItemText(comboBox, item)
	DGS:dgsComboBoxRemoveItem(comboBox, item)
	outputChatBox("Item with text " .. text .. " has been removed!")
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