DgsComboBoxClear

From Multi Theft Auto: Wiki

This function removes all the items from a dgs combobox.

Syntax

bool dgsComboBoxClear ( element comboBox )

Required Arguments

  • comboBox: The dgs combobox element to be cleared

Returns

Returns true if the dgs combobox element is valid and has been cleared successfully, false otherwise.

Example

This example creates a combo box with all server vehicles on it, with a command to clear the combo box.

DGS = exports.dgs

addEventHandler ( "onClientResourceStart", resourceRoot,function ( )
	vehiclesComboBox = DGS:dgsCreateComboBox ( 400, 100, 200, 5 * #getElementsByType ( "vehicle" ), "", false ) -- We create a combo box.
	for index, vehicle in ipairs ( getElementsByType ( "vehicle" ) ) do -- We loop through all vehicles.
		DGS:dgsComboBoxAddItem ( vehiclesComboBox, getVehicleName ( vehicle ) ) -- We add the vehicle name to our combo box.
	end
end)

addCommandHandler ( "clear",function ( )
	DGS:dgsComboBoxClear ( vehiclesComboBox ) -- We clear our combo box removing all vehicles.
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