guiGridListSetHorizontalScrollPosition | Multi Theft Auto: Wiki Skip to content

guiGridListSetHorizontalScrollPosition

Client-side
Server-side
Shared

Pair: guiGridListGetHorizontalScrollPosition

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function is used to set the horizontal scroll position from a grid list

Syntax

guiGridListSetHorizontalScrollPosition ( )

Code Examples

client

This example sets the position of the horizontal 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
if gridList then -- if the grid list exist then
guiGridListSetHorizontalScrollPosition (gridList,50) -- in the middle
local postion = guiGridListGetHorizontalScrollPosition(gridList) -- get the horizontal scroll position
outputChatBox ( "Current position of the horizontal 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