GuiGridListSetColumnTitle

From Multi Theft Auto: Wiki
Revision as of 13:43, 30 June 2016 by Walid (talk | contribs)
Jump to navigation Jump to search

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

Syntax

bool guiGridListSetColumnTitle( element guiGridlist, int columnIndex, string title )

Required Arguments

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

Returns

Returns true if the new title was set, or false otherwise.

Requirements

This template will be deleted.

Example

local gridlist = guiCreateGridList ( 332, 195, 286, 249, false ) 
local column = guiGridListAddColumn(gridlist, "title", 0.5)

addCommandHandler("setTitle",
   function(cmd, title)
     if title then 
       if column then 
          guiGridListSetColumnTitle(gridlist ,column, title)	
	  outputChatBox("Column name has been successfully changed to : "..title,0,255,0)
       end 
     else
       outputChatBox("[Usage] /setTitle [title]",255,0,0)
     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