DgsGridListGetVerticalScrollPosition

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips