OnDgsScrollBarScrollPositionChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client event}} __NOTOC__ This event is fired when a DGS scrollbar is scrolled ( including scroll bars of scrollpane, gridlist and combobox ). ==Parameters== <syntaxhighli...")
 
No edit summary
Line 20: Line 20:
outputChatBox("The new scroll position is "..new.." ( was:"..old.." )")
outputChatBox("The new scroll position is "..new.." ( was:"..old.." )")
end
end
addEventHandler("onClientDgsDxScrollBarScrollPositionChange",getRootElement(),OnScroll)
addEventHandler("onDgsScrollBarScrollPositionChange",getRootElement(),OnScroll)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 13:33, 20 January 2018

This event is fired when a DGS scrollbar is scrolled ( including scroll bars of scrollpane, gridlist and combobox ).

Parameters

element Scrolled
  • ScrollTo: The value of current scroll position
  • ScrollFrom: The value of previous scroll position

Source

The source of this event is the dgs scrollbar element that got scrolled.

Example

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

DGS = exports.dgs
function OnScroll(new,old)
	outputChatBox("The new scroll position is "..new.." ( was:"..old.." )")
end
addEventHandler("onDgsScrollBarScrollPositionChange",getRootElement(),OnScroll)

See Also

DGS events

General

Check Box

Combo Box

Drag'N Drop

Edit

Grid List

Menu

Selector

Mouse

Radio Button

Switch Button

Tab

Animation

Plugin

Media

Color Picker

QRCode

Remote Image

Client event functions