CustomComboBox:setMaxHeight

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

This function sets for Custom Combo Box maximal height of list with items.

Syntax

nil CustomComboBox:setMaxHeight(float Height)

Required Arguments

  • 'Height - Maximal height of list with items in pixels

Information

This sets maximal height. Default is Height of combo box, multiplied for 3.5. If sum of items height is less than that value, height will be sum of items height. Else it can be scrolled using Middle Mouse Button.

Example

This example creates window with two Combo Boxes, and makes them maximal height:

local Window = CustomWindow.create(50, 50, 120, 95, "Example")

local ComboBoxOne = CustomComboBox.create(5, 25, 110, 30, "Combo Box", false, Window)
local ComboBoxTwo = CustomComboBox.create(5, 60, 110, 30, "Select", false, Window)

ComboBoxOne:addItem("Hello World")
ComboBoxOne:addItem("Another Item")
ComboBoxOne:addItem("Third Item")
ComboBoxOne:addItem("Fourth Item")
ComboBoxOne:addItem("Fifth Item")
ComboBoxOne:setMaxHeight(100)

local Item = ComboBoxTwo:addItem("Hello World")
ComboBoxTwo:addItem("Quick Brown Fox")
ComboBoxTwo:addItem("Jumps Over")
ComboBoxTwo:addItem("The Lazy Dog")
ComboBoxTwo:addItem("Over Size...")
ComboBoxTwo:addItem("...Items")
ComboBoxTwo:setMaxHeight(100)

ComboBoxOne:setSelectedItem("Hello World")
ComboBoxTwo:setSelectedItem(Item)

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets