DgsComboBoxGetBoxHeight

From Multi Theft Auto: Wiki

This function gets the height of the drop-down box of combo box.

Syntax

bool dgsComboBoxGetBoxHeight( element comboBox, bool relative )

Required Arguments

  • comboBox: the combo box you want to get from.
  • relative: This is whether sizes and positioning are relative. If this is true, then all x,y,width,height floats must be between 0 and 1, representing measures relative to the parent.

Returns

Returns a float value if succeed, false otherwise.

Example

DGS = exports.dgs
dgsWindow = DGS:dgsCreateWindow(100,100,200,100,"ComboBox test area",false) -- create the container window
local combobox = DGS:dgsCreateComboBox(20,30,150,20,"Checked ComboBox",false,dgsWindow) -- note the parameter after header, it will create a ComboBox
for i=1,100 do
	DGS:dgsComboBoxAddItem(combobox,"Test"..i)
end
local height = DGS:dgsComboBoxGetHeight(combobox,false)
DGS:dgsComboBoxSetHeight(combobox,height+20,false)

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