GuiGridListSetColumnWidth: Difference between revisions
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...) |
m (OOP syntax) |
||
(8 intermediate revisions by 6 users not shown) | |||
Line 5: | Line 5: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool | bool guiGridListSetColumnWidth ( element gridList, int columnIndex, number width, bool relative ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[Element/GUI/Gridlist|GuiGridList]]:setColumnWidth}} | |||
===Required Arguments=== | ===Required Arguments=== | ||
Line 12: | Line 13: | ||
*'''columnIndex:''' Column ID of the size you want to change | *'''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. | *'''width:''' A float or integer of the width of the column depending on the '''relative''' argument. | ||
*'''relative:''' A boolean defining whether '''width''' measurements will be relative to the Gridlist size, or absolute pixels. | *'''relative:''' A boolean defining whether '''width''' measurements will be relative to the Gridlist size, or absolute pixels. | ||
Line 21: | Line 19: | ||
==Example== | ==Example== | ||
This | This example creates a gridlist with one column that is too small to display. After the column has been successfully created, we give it a new width so you can see column. | ||
<syntaxhighlight lang="lua"> | <!-- Why these odd positions? Examples look cleaner with numbers like 250 instead of 249. Dunno whether I should change them.--> | ||
<syntaxhighlight lang="lua">local gridlist = guiCreateGridList ( 332, 195, 286, 249, false ) | |||
local column = guiGridListAddColumn ( gridlist, "My column", 0 ) | |||
if column then | |||
guiGridListSetColumnWidth ( gridlist, column, 0.5, true) | |||
end | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{GUI functions}} | {{GUI functions}} | ||
{{GUI_events}} |
Latest revision as of 21:10, 7 November 2018
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 )
OOP Syntax Help! I don't understand this!
- Method: GuiGridList:setColumnWidth(...)
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.
- 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 example creates a gridlist with one column that is too small to display. After the column has been successfully created, we give it a new width so you can see column.
local gridlist = guiCreateGridList ( 332, 195, 286, 249, false ) local column = guiGridListAddColumn ( gridlist, "My column", 0 ) if column then guiGridListSetColumnWidth ( gridlist, column, 0.5, true) end
See Also
General functions
- guiBringToFront
- getChatboxLayout
- getChatboxCharacterLimit
- guiCreateFont
- guiBlur
- guiFocus
- guiGetAlpha
- guiGetCursorType
- guiGetEnabled
- guiGetFont
- guiGetInputEnabled
- guiGetInputMode
- guiGetPosition
- guiGetProperties
- guiGetProperty
- guiGetScreenSize
- guiGetSize
- guiGetText
- guiGetVisible
- guiMoveToBack
- guiSetAlpha
- guiSetEnabled
- guiSetFont
- guiSetInputEnabled
- guiSetInputMode
- guiSetPosition
- guiSetProperty
- guiSetSize
- guiSetText
- guiSetVisible
- isChatBoxInputActive
- isConsoleActive
- isDebugViewActive
- isMainMenuActive
- isMTAWindowActive
- isTransferBoxActive
- setChatboxCharacterLimit
- setDebugViewActive
Browsers
Buttons
Checkboxes
Comboboxes
- guiCreateComboBox
- guiComboBoxAddItem
- guiComboBoxClear
- guiComboBoxGetItemCount
- guiComboBoxGetItemText
- guiComboBoxGetSelected
- guiComboBoxIsOpen
- guiComboBoxRemoveItem
- guiComboBoxSetItemText
- guiComboBoxSetOpen
- guiComboBoxSetSelected
Edit Boxes
- guiCreateEdit
- guiEditGetCaretIndex
- guiEditGetMaxLength
- guiEditIsMasked
- guiEditIsReadOnly
- guiEditSetCaretIndex
- guiEditSetMasked
- guiEditSetMaxLength
- guiEditSetReadOnly
Gridlists
- guiCreateGridList
- guiGridListAddColumn
- guiGridListAddRow
- guiGridListAutoSizeColumn
- guiGridListClear
- guiGridListGetColumnCount
- guiGridListGetColumnTitle
- guiGridListGetColumnWidth
- guiGridListGetHorizontalScrollPosition
- guiGridListGetItemColor
- guiGridListGetItemData
- guiGridListGetItemText
- guiGridListGetRowCount
- guiGridListGetSelectedCount
- guiGridListGetSelectedItem
- guiGridListGetSelectedItems
- guiGridListGetSelectionMode
- guiGridListIsSortingEnabled
- guiGridListGetVerticalScrollPosition
- guiGridListInsertRowAfter
- guiGridListRemoveColumn
- guiGridListRemoveRow
- guiGridListSetColumnTitle
- guiGridListSetColumnWidth
- guiGridListSetHorizontalScrollPosition
- guiGridListSetItemColor
- guiGridListSetItemData
- guiGridListSetItemText
- guiGridListSetScrollBars
- guiGridListSetSelectedItem
- guiGridListSetSelectionMode
- guiGridListSetSortingEnabled
- guiGridListSetVerticalScrollPosition
Memos
- guiCreateMemo
- guiMemoGetCaretIndex
- guiMemoGetVerticalScrollPosition
- guiMemoSetVerticalScrollPosition
- guiMemoIsReadOnly
- guiMemoSetCaretIndex
- guiMemoSetReadOnly
Progressbars
Radio Buttons
Scrollbars
Scrollpanes
- guiCreateScrollPane
- guiScrollPaneGetHorizontalScrollPosition
- guiScrollPaneGetVerticalScrollPosition
- guiScrollPaneSetHorizontalScrollPosition
- guiScrollPaneSetScrollBars
- guiScrollPaneSetVerticalScrollPosition
Static Images
Tab Panels
Tabs
Text Labels
- guiCreateLabel
- guiLabelGetColor
- guiLabelGetFontHeight
- guiLabelGetTextExtent
- guiLabelSetColor
- guiLabelSetHorizontalAlign
- guiLabelSetVerticalAlign
Windows
Input
GUI
- onClientGUIAccepted
- onClientGUIBlur
- onClientGUIChanged
- onClientGUIClick
- onClientGUIComboBoxAccepted
- onClientGUIDoubleClick
- onClientGUIFocus
- onClientGUIMouseDown
- onClientGUIMouseUp
- onClientGUIMove
- onClientGUIScroll
- onClientGUISize
- onClientGUITabSwitched
- onClientMouseEnter
- onClientMouseLeave
- onClientMouseMove
- onClientMouseWheel