DgsGridListSetRowBackGroundColor

From Multi Theft Auto: Wiki

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

Syntax

bool dgsGridListSetRowBackGroundColor( element gridList, int rowIndex, int colorDefault, int colorHoving, int colorSelected )

Required Arguments

  • gridList: the grid list that you want to operate.
  • rowIndex: An integer of the row index.
  • colorDefault: An integer of the color of the row (Default State).
  • colorHoving: An integer of the color of the row (Hoving State).
  • colorSelected: An integer of the color 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)
for i=1,10 do
	local row = DGS:dgsGridListAddRow(gridlist)
	DGS:dgsGridListSetItemText(gridlist,row,1,tostring(i))
	DGS:dgsGridListGetRowBackGroundColor(gridlist,row,tocolor(255,255,255,255),tocolor(0,0,255,255),tocolor(255,0,0,255))
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