DgsGridListGetVerticalScrollPosition

From Multi Theft Auto: Wiki

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

Syntax

float dgsGridListGetVerticalScrollPosition( element dgsGridList )

OOP Syntax Help! I don't understand this!

Method: Element/DGS/Gridlist/dgsGridList:getVerticalScrollPosition(...)
Variable: .verticalScrollPosition
Counterpart: dgsGridListSetVerticalScrollPosition

Required Arguments

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

Returns

Returns a float indicating the vertical scroll position, or false otherwise

Example

This example gets the position of the vertical 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:dgsGridListGetVerticalScrollPosition(gridList) -- get the vertical scroll position
    outputChatBox ( "Current position of the vertical 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