guiGridListRemoveRow | Multi Theft Auto: Wiki Skip to content

guiGridListRemoveRow

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


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

Syntax

guiGridListRemoveRow ( )

Code Examples

client

In this example, when the script starts, a grid list with 1 column and 2 rows, which have text assigned to them. After 3 seconds, one row is randomly deleted.

function deleteRow ()
--Choose randomly which row to delete, output the
--chosen row into the chat box, and delete the row
randomDeletion = math.random ( 1, 2 )
if randomDeletion == 1 then
outputChatBox ( "Removing row A" )
guiGridListRemoveRow ( myGridList, rowA )
elseif randomDeletion == 2 then
outputChatBox ( "Removing row B" )
guiGridListRemoveRow ( myGridList, rowB )
end
end
function clientsideResourceStart ()
--Create a gridlist
myGridList = guiCreateGridList ( 0.30, 0.10, 0.5, 0.60, true )
--Create a column for myGridList to add rows into
columnA = guiGridListAddColumn ( myGridList, "columnA Title", 0.25 )
--Create 2 rows for ColumnA and set the text for them
rowA = guiGridListAddRow ( myGridList )
guiGridListSetItemText ( myGridList, rowA, columnA, "Hello", false, false )
rowB = guiGridListAddRow ( myGridList )
guiGridListSetItemText ( myGridList, rowB, columnA, "World!", false, false )
--Trigger the function to delete a row 3 seconds after the script starts
setTimer ( deleteRow, 3000, 1 )
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )

See Also

GUI Functions