guiGridListGetVerticalScrollPosition | Multi Theft Auto: Wiki Skip to content

guiGridListGetVerticalScrollPosition

Client-side
Server-side
Shared

Pair: guiGridListSetVerticalScrollPosition

Manual Review Required

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


This function is used to get the vertical scroll position from a grid list

OOP Syntax Help! I don't understand this!

  • Method: guigridlist:getVerticalScrollPosition(...)
  • Variable: .verticalScrollPosition

Syntax

float guiGridListGetVerticalScrollPosition ( element guiGridlist )
Required Arguments
  • guiGridlist: The grid list you want to get the vertical scroll position from

Returns

  • float: value

Returns a integer between 0 and 100 indicating the vertical scroll position, or false otherwise.

Code Examples

shared

This example gets 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
if gridList then -- if the grid list exist then
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