DgsGridListGetHorizontalScrollPosition

From Multi Theft Auto: Wiki

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

Syntax

float dgsGridListGetHorizontalScrollPosition( element dgsGridList)

OOP Syntax Help! I don't understand this!

Method: dgsGridList:getHorizontalScrollPosition(...)
Variable: .horizontalScrollPosition
Counterpart: dgsGridListSetHorizontalScrollPosition

Required Arguments

  • dgsGridList: The grid list you want to get the horizontal scroll position from

Returns

Returns a float indicating the horizontal scroll position, or false otherwise.

Example

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

local 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
    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