guiGridListSetVerticalScrollPosition | Multi Theft Auto: Wiki Skip to content

guiGridListSetVerticalScrollPosition

Client-side
Server-side
Shared

Pair: guiGridListGetVerticalScrollPosition

This function is used to set the vertical scroll position of a grid list.

OOP Syntax Help! I don't understand this!

  • Method:gui-gridlist:setVerticalScrollPosition(...)
  • Variable: .verticalScrollPosition

Syntax

bool guiGridListSetVerticalScrollPosition ( ​gui-gridlist guiGridlist, ​float fPosition )
Required arguments
  • guiGridlist: The grid list you want to set the vertical scroll position for.
  • fPosition: A float representing the vertical scroll position (0-100).

Returns

Returns true if the vertical scroll position was set, or false otherwise.

  • bool: result

Code Examples

client

This example sets the position of the vertical scroll and outputs it to the chatbox.

local gridList = guiCreateGridList(0.80, 0.10, 0.15, 0.60, true) -- Create the grid list
local column = guiGridListAddColumn(gridList, "New column", 1) -- Create a new column in the grid list
for i = 1, 100 do
guiGridListAddRow(gridList, "Item " .. tostring(i))
end
if gridList then -- if the grid list exist then
guiGridListSetVerticalScrollPosition(gridList, 50) -- in the middle
local postion = guiGridListGetVerticalScrollPosition(gridList) -- get the vertical scroll position
outputChatBox("Current position of the vertical scroll: " .. tostring(position) .. "%") -- output to the chatbox
else
outputChatBox("Grid list not found!") -- if the grid list was not found
end

See Also

GUI Functions