guiScrollPaneGetHorizontalScrollPosition | Multi Theft Auto: Wiki Skip to content

guiScrollPaneGetHorizontalScrollPosition

Client-side
Server-side
Shared

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 get the position of a horizontal scroll pane as a percentage.

Syntax

guiScrollPaneGetHorizontalScrollPosition ( )

Code Examples

client

This example gets the position of a scroll pane called "myScrollPane" created withguiCreateScrollPane, and outputs it to the chatbox.

if ( myScrollPane ) then -- if the scroll pane exist then
-- get the position
local position = guiScrollPaneGetHorizontalScrollPosition( myScrollPane )
-- output to the chatbox
outputChatBox ( "Current position of scroll pane:" .. tostring(position) .. "%" )
else -- if the scroll pane was not found
outputChatBox ("scroll pane not found!")
end

See Also

GUI Functions