DgsComboBoxGetItemColor

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

This function get the color of a comboBox item.

Syntax

bool dgsComboBoxGetItemColor ( element comboBox, int item )

Required Arguments

  • comboBox: The combo box element
  • item: Item ID

Returns

Returns number if the item color was got successfully, false otherwise.

Example

This example creates a player list on the right of the screen and fills it with players online and sets the combo box item color according to their nametag color.

DGS = exports.dgs

function createPlayerComboBox ( )
	--Create the grid list element
	playerComboBox = DGS:dgsCreateComboBox ( 0.80, 0.10, 0.15, 0.60,"Select a player", true )
	for id, player in ipairs ( getElementsByType ( "player" ) ) do
		local item = DGS:dgsComboBoxAddItem( playerComboBox )
		local r, g, b = getPlayerNametagColor ( player ) -- We get the player nametag color.
		DGS:dgsComboBoxSetItemText ( playerComboBox , item, getPlayerName ( player ) )
		DGS:dgsComboBoxSetItemColor ( playerComboBox , item, tocolor( r, g, b, 255 ) ) -- We set the grid list item color to the returned values of getPlayerNametagColor.
	end
end
addEventHandler ( "onClientResourceStart", resourceRoot, createPlayerList )

addEventHandler ( "onClientDgsComboBoxSelect", root, function()
	if source == playerComboBox then
		local item = DGS:dgsComboBoxGetSelectedItem(source)
		if item ~= -1 then
			local color = DGS:dgsComboBoxGetItemColor( source, item )
			if color then
				outputChatBox( "Item : "..item.." ; Color : "..color)
			end
		end
	end
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