GuiGridListGetColumnCount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ This allows you to get the count of existing columns in a gridlist. ==Syntax== <syntaxhighlight lang="lua"> int guiGridListGetColumnCount ( element gridList ) <...")
 
 
(4 intermediate revisions by 4 users not shown)
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int guiGridListGetColumnCount ( element gridList )
int guiGridListGetColumnCount ( element gridList )
</syntaxhighlight>  
</syntaxhighlight>
{{OOP||[[Element/GUI/Gridlist|GuiGridList]]:getColumnCount|columnCount}}


===Required Arguments===  
===Required Arguments===  
Line 14: Line 15:
Returns an integer with the amount of columns in the gridlist, false otherwise.
Returns an integer with the amount of columns in the gridlist, false otherwise.


==Example==
This page lacks an example
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--add an example here
-- create the grid list
local list = guiCreateGridList(0.80, 0.40, 0.15, 0.35, true)
-- add three columns to the grid list
guiGridListAddColumn(list, "Column 1", 0.33)
guiGridListAddColumn(list, "Column 2", 0.33)
guiGridListAddColumn(list, "Column 3", 0.33)
 
-- display the number of columns in the grid list in the debug or server console (/debugscript 3)
print("Number of columns: " .. guiGridListGetColumnCount(list))
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI functions}}
{{GUI functions}}
[[Category:Needs_Example]]
{{GUI_events}}

Latest revision as of 18:05, 22 December 2022

This allows you to get the count of existing columns in a gridlist.

Syntax

int guiGridListGetColumnCount ( element gridList )

OOP Syntax Help! I don't understand this!

Method: GuiGridList:getColumnCount(...)
Variable: .columnCount


Required Arguments

  • gridList: The grid list you want to add a column to

Returns

Returns an integer with the amount of columns in the gridlist, false otherwise.

-- create the grid list
local list = guiCreateGridList(0.80, 0.40, 0.15, 0.35, true)
-- add three columns to the grid list
guiGridListAddColumn(list, "Column 1", 0.33)
guiGridListAddColumn(list, "Column 2", 0.33)
guiGridListAddColumn(list, "Column 3", 0.33)

-- display the number of columns in the grid list in the debug or server console (/debugscript 3)
print("Number of columns: " .. guiGridListGetColumnCount(list))

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

Input

GUI