GuiGridListGetColumnTitle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
{{client function}}
{{client function}}
{{Needs_Example}}
This function is used to get the column title of a gridlist column.
This function is used to get the column title of a gridlist column.


Line 21: Line 20:
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local theList = guiCreateGridList(0.80, 0.10, 0.15, 0.60, true) -- Create the grid list
local column = guiGridListAddColumn(theList, "New column", 0.9) -- Create a new column in the grid list
 
function GetColumnTitle()
function GetColumnTitle()
theList = guiCreateGridList(0.80, 0.10, 0.15, 0.60, true) -- Create the grid list
  if column then
column = guiGridListAddColumn(theList, "New column", 0.9) -- Create a new column in the grid list
    local ColumnTitle = guiGridListGetColumnTitle(theList, 1)  
local ColumnTitle = guiGridListGetColumnTitle(theList, 1)
    outputChatBox("The Column Title Is: "..ColumnTitle, 0, 255, 0)--Get The column title in the chat
outputChatBox("The Column Title Is: "..ColumnTitle, 0, 255, 0)--Get The column title in the chat
  end
end
end
addCommandHandler("GetTitle", GetColumnTitle)
addCommandHandler("GetTitle", GetColumnTitle)

Revision as of 13:51, 30 June 2016

This function is used to get the column title of a gridlist column.

Syntax

string guiGridListGetColumnTitle( element guiGridlist, int columnIndex )

Required Arguments

  • guiGridlist: The grid list you want to get the column title from
  • columnIndex: Column ID

Returns

Returns a string containing the column title, or false otherwise.

Requirements

Minimum server version n/a
Minimum client version 1.3.1-9.04949.0

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.1-9.04949.0" />

Example

Click to collapse [-]
Client

local theList = guiCreateGridList(0.80, 0.10, 0.15, 0.60, true) -- Create the grid list
local column = guiGridListAddColumn(theList, "New column", 0.9) -- Create a new column in the grid list
  
function GetColumnTitle()
  if column then 
    local ColumnTitle = guiGridListGetColumnTitle(theList, 1) 
    outputChatBox("The Column Title Is: "..ColumnTitle, 0, 255, 0)--Get The column title in the chat
  end 
end
addCommandHandler("GetTitle", GetColumnTitle)

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