DgsGridListSetRowBackGroundImage

From Multi Theft Auto: Wiki

This function sets the row background texture of the grid list.

Syntax

bool dgsGridListSetRowBackGroundImage( element gridList, int rowIndex, texture imageDefault, texture imageHoving, texture imageSelected )

Required Arguments

  • gridList: the grid list that you want to operate.
  • rowIndex: An integer of the row index.
  • imageDefault: An integer of the image of the row (Default State).
  • imageHoving: An integer of the image of the row (Hoving State).
  • imageSelected: An integer of the image of the row (Selected State).

Returns

Returns true if set successfully, false if one of the arguments was invalid.

Example

DGS = exports.dgs

gridlist = DGS:dgsCreateGridList(300, 200, 300, 400, false)
DGS:dgsGridListAddColumn(gridlist, "ID", 0.7)

local texture = dxCreateTexture("example.png") --Example
for i=1, 10 do
	local row = DGS:dgsGridListAddRow(gridlist)
	DGS:dgsGridListSetItemText(gridlist, row, 1, tostring(i))
	DGS:dgsGridListGetRowBackGroundImage(gridlist,row,texture, texture, texture)
end

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