DgsGridListSetHorizontalScrollPosition

From Multi Theft Auto: Wiki

This function is used to set the horizontal scroll position from a grid list

Syntax

bool dgsGridListSetHorizontalScrollPosition ( element dgsGridList, float position )

OOP Syntax Help! I don't understand this!

Method: dgsGridList:setHorizontalScrollPosition(...)
Variable: .horizontalScrollPosition
Counterpart: dgsGridListGetHorizontalScrollPosition

Required Arguments

  • dgsGridList: The grid list you want to set the horizontal scroll position from
  • position : A float representing the horizontal scroll position (0-100)

Returns

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

Example

This example sets the position of the horizontal scroll and outputs it to the chatbox.

DGS = exports.dgs
local gridList = DGS:dgsCreateGridList(0.80, 0.10, 0.15, 0.60, true) -- Create the grid list
local column = DGS:dgsGridListAddColumn(gridList, "New column", 1) -- Create a new column in the grid list
 
if (gridList) then -- if the grid list exist then
    DGS:dgsGridListSetHorizontalScrollPosition (gridList,50) -- in the middle
    local postion = DGS:dgsGridListGetHorizontalScrollPosition(gridList) -- get the horizontal scroll position
    outputChatBox ( "Current position of the horizontal scroll:" ..tostring(position).. "%" ) -- output to the chatbox
else 
    outputChatBox ("Grid list not found!") -- if the grid list was not found
end

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