GuiScrollBarGetScrollPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 16: Line 16:
This example outputs a message with the new scroll position when a scrollbar is scrolled.
This example outputs a message with the new scroll position when a scrollbar is scrolled.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function OnScroll(Scrolled)
function OnScroll( )
outputChatBox("The new scroll position is "..guiScrollBarGetScrollPosition(Scrolled))
outputChatBox( "The new scroll position is " .. guiScrollBarGetScrollPosition( source ) )
end
end
addEventHandler("onClientGUIScroll",getRootElement(),OnScroll)
addEventHandler( "onClientGUIScroll", root, OnScroll )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI_functions}}
{{GUI_functions}}
{{GUI_events}}
[[Catogory:Needs_Example]]
[[Catogory:Needs_Example]]

Latest revision as of 14:18, 20 May 2018

This function gets the scroll amount of a scrollbar as a percentage.

Syntax

float guiScrollBarGetScrollPosition ( gui-scrollBar theScrollBar )

Required Arguments

  • theScrollBar : The scrollbar you want to check.

Returns

Returns a float ranging between 0 and 100, representing the amount the scrollbar has been scrolled.

Example

This example outputs a message with the new scroll position when a scrollbar is scrolled.

function OnScroll( )
	outputChatBox( "The new scroll position is " .. guiScrollBarGetScrollPosition( source ) )
end
addEventHandler( "onClientGUIScroll", root, OnScroll )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows

Input

GUI


Catogory:Needs_Example