GuiGridListAddColumn: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:


==Example==  
==Example==  
<syntaxhighlight lang="lua">
function createPlayerList ()
function createPlayerList ()
--Create the grid list element
--Create the grid list element

Revision as of 19:22, 30 July 2007

This function is use to create columns in GUI grid lists

Syntax

int guiGridListAddColumn ( element gridList, string title, float width )

Required Arguments

  • gridList: GUI grid list element you want to add a column to
  • title: Title of the column
  • width: Column width, relative to the grid list width

Returns

Returns the column id if it was created, false otherwise.

Example

function createPlayerList ()
	--Create the grid list element
	local playerList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
	--Create a players column in the list
	local column = guiGridListAddColumn( playerList, "Player", 0.85 )
	if ( column ) then --If the column has been created, fill it with players
		for id, player in ipairs(getElementsByType("player")) do
			local row = guiGridListAddRow ( playerList )
			guiGridListSetItemText ( playerList, row, column, getPlayerName ( player ), false, false )
		end
	end
end

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows