DgsComboBoxClear

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips