GuiGridListSetColumnWidth: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Client function}} __NOTOC__ This allows you to set the width of an existing column in a gridlist. ==Syntax== <syntaxhighlight lang="lua"> bool guiGridListRemoveColumn ( element gridList, int columnI...)
 
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool guiGridListRemoveColumn ( element gridList, int columnIndex, number width, [bool relative = true] )
bool guiGridListSetColumnWidth ( element gridList, int columnIndex, number width, [bool relative = true] )
</syntaxhighlight>  
</syntaxhighlight>  



Revision as of 14:56, 31 December 2008

This allows you to set the width of an existing column in a gridlist.

Syntax

bool guiGridListSetColumnWidth ( element gridList, int columnIndex, number width, [bool relative = true] )

Required Arguments

  • gridList: The grid list you want to add a column to
  • columnIndex: Column ID of the size you want to change
  • width: A float or integer of the width of the column depending on the relative argument.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • relative: A boolean defining whether width measurements will be relative to the Gridlist size, or absolute pixels.

Returns

Returns true if the gridlist column width was successfully set, false if bad arguments were given.

Example

This page lacks an example

--add an example here

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