guiGridListAddColumn | Multi Theft Auto: Wiki Skip to content

guiGridListAddColumn

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 function is used to create columns in grid lists.

Note

If the width of all columns exceeds 0.95 horizontal scrollbar will appear.

Syntax

guiGridListAddColumn ( )

Code Examples

client

This example creates a player list on the right side of the screen and fills it with the currently connected players.

local playerList = guiCreateGridList(0.80, 0.40, 0.15, 0.35, true)
guiGridListAddColumn(playerList, "Player", 0.85)
for _, player in ipairs(getElementsByType("player")) do
guiGridListAddRow(playerList, getPlayerName(player))
end

See Also

GUI Functions