DgsGridListRemoveColumn

From Multi Theft Auto: Wiki

This allows you to delete columns that exist in grid lists.

Syntax

bool dgsGridListRemoveColumn ( element gridList, int columnIndex )

Required Arguments

  • gridList: The dgs grid list you want to remove a column from
  • columnIndex: Column ID

Returns

Returns true if the dgs grid list column was successfully removed, false otherwise.

Example

This example creates a grid list and adds 4 columns to it when the script starts. After 3 seconds, it randomly deletes a column and outputs to the chat box which column was deleted.

DGS = exports.dgs

function deleteColumn ()
	--Choose randomly which column to delete, output the chosen column into the chat box, and delete the column
    randomDeletion = math.random ( 1, 4 )   
	if randomDeletion == 1 then
		outputChatBox ( "Removing column A" )
		DGS:dgsGridListRemoveColumn ( myGridList, columnA )
	elseif randomDeletion == 2 then    
		outputChatBox ( "Removing column B" )
		DGS:dgsGridListRemoveColumn ( myGridList, columnB )
	elseif randomDeletion == 3 then
		outputChatBox ( "Removing column C" )
		DGS:dgsGridListRemoveColumn ( myGridList, columnC )
	else
		outputChatBox ( "Removing column D" )
		DGS:dgsGridListRemoveColumn ( myGridList, columnD )
	end
end

function clientsideResourceStart ()
	--Create a gridlist
	myGridList = DGS:dgsCreateGridList ( 0.30, 0.10, 0.5, 0.60, true ) 
	--Create 4 columns for myGridList
	columnA = DGS:dgsGridListAddColumn ( myGridList, "columnA Title", 0.25 ) 
	columnB = DGS:dgsGridListAddColumn ( myGridList, "columnB Title", 0.25 )
	columnC = DGS:dgsGridListAddColumn ( myGridList, "columnC Title", 0.25 )
	columnD = DGS:dgsGridListAddColumn ( myGridList, "columnD Title", 0.25 )	
   	--Set a timer to trigger the deleteColumn function 3 seconds after the script starts
	setTimer ( deleteColumn, 3000, 1 )
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )

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