guiScrollPaneSetVerticalScrollPosition | Multi Theft Auto: Wiki Skip to content

guiScrollPaneSetVerticalScrollPosition

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

Syntax

guiScrollPaneSetVerticalScrollPosition ( )

Code Examples

client

This example sets 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
-- set the position
guiScrollPaneSetVerticalScrollPosition( myScrollPane, 33.3 ) -- 1/3 from the upside
-- get the position
local position = guiScrollPaneGetVerticalScrollPosition( 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