OnDgsElementScroll

From Multi Theft Auto: Wiki
Revision as of 04:04, 1 September 2019 by Thisdp (talk | contribs) (→‎Parameters)
Jump to navigation Jump to search

This event is fired when a DGS element is scrolled ( including scroll bar and scroll bars of scroll pane, grid list, memo and combo box ).

Parameters

element ScrollBar, float ScrollTo, float ScrollFrom
  • ScrollBar: The scroll bar that has changed its scroll position.
  • ScrollTo: The value of current scroll position
  • ScrollFrom: The value of previous scroll position

Source

The source of this event is the dgs element that got scrolled (can be scroll pane, grid list, combo box, memo and scroll bar).

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(scb,new,old)
	outputChatBox("The new scroll position is "..new.." ( was:"..old.." )")
end
addEventHandler("onDgsElementScroll",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