DgsGridListSetSelectedItem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} This function returns the row and colum indexes of the selected item in a grid list. ==Syntax== <syntaxhighlight lang="lua"> int dgsDxGridListSetSelected...")
(No difference)

Revision as of 13:50, 11 November 2017

This function returns the row and colum indexes of the selected item in a grid list.

Syntax

int dgsDxGridListSetSelectedItem ( element gridList, int rowID )

Required Arguments

  • gridList: the grid list you want to set the selected row index to.
  • rowID: the row index you want to set.

Returns

Returns 'true' if succeeded, false otherwise.

Example

DGS = exports.dgs
showCursor(true)
local GridList = DGS:dgsDxCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
local column = DGS:dgsDxGridListAddColumn( GridList, "test", 0.85 )
for i=1,10 do
	local row = DGS:dgsDxGridListAddRow ( GridList )
	DGS:dgsDxGridListSetItemText ( GridList, row, column, tostring(i) )
end
DGS:dgsDxGridListSetSelectedItem( GridList, 1 )

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

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips