DgsGridListSetItemText: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==Syntax== <syntaxhighlight lang="lua"> bool guiGridListSetItemText ( element gridList, int rowIndex, int columnIndex, string text, bool section, bool number ) </syntaxhighli...") |
(--Syntax) |
||
Line 1: | Line 1: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool | bool dgsDxGridListSetItemText( element gridList, int rowIndex, int columnIndex, string text, bool section, bool number ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 22:04, 17 August 2017
Syntax
bool dgsDxGridListSetItemText( element gridList, int rowIndex, int columnIndex, string text, bool section, bool number )
Required Arguments
- gridList: The grid list element
- rowIndex: Row ID
- columnIndex: Column ID
- text: The text you want to put in (does NOT accept numbers, use tostring() for that)
- section: Determines if the item is a section
- number: Tells whether the text item is a number value or not (used for sorting)
Returns
Returns true if the item text was set successfully, false otherwise.
Click to expand [+]
Client