DgsScrollBarSetScrollPosition

From Multi Theft Auto: Wiki

This function is used to set the scroll amount of a dgs scrollbar as a percentage.

Syntax

bool dgsScrollBarSetScrollPosition ( element theScrollBar, float amount [, bool isGrade = false ] )

Required Arguments

  • theScrollBar: The dgs scrollbar you want to change the progress of
  • amount: A float ranging from 0 - 100 representing the amount you wish to set the scroll bar.

Optional Arguments

  • isGrade: A bool indicates whether the input value is grade or normal position. ( This only works when there are grades set in scroll bar )

Returns

Returns true if the scroll position was successfully set, false otherwise.

Example

In this example, you can set the scrolling position using the command /pos <amount>

DGS = exports.dgs
local window = DGS:dgsCreateWindow(0.3,0.3,0.3,0.3,"Scroll-Position",true)
local scroll_bar = DGS:dgsCreateScrollBar(5,25,30,245,false,false,window)

function scroll_bar_setPos(_,position)
	if (tonumber(position)) then -- If we have typed a position
		DGS:dgsScrollBarSetScrollPosition(scroll_bar,position) --Set the position in the scroll bar
	end
end
addCommandHandler("pos",scroll_bar_setPos)

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D