DgsGridListGetHorizontalScrollPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{client function}} This function is used to get the horizontal scroll position from a grid list ==Syntax== <syntaxhighlight lang="lua"> float dgsGridListGetHorizontalScrollP...")
 
No edit summary
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
float dgsGridListGetHorizontalScrollPosition( element dgsGridlist )
float dgsGridListGetHorizontalScrollPosition( element dgsGridList)
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/DGS/Gridlist|dgsGridList]]:getHorizontalScrollPosition|horizontalScrollPosition|dgsGridListSetHorizontalScrollPosition}}
{{OOP||[[Element/DGS/Gridlist|dgsGridList]]:getHorizontalScrollPosition|horizontalScrollPosition|dgsGridListSetHorizontalScrollPosition}}


===Required Arguments===
===Required Arguments===
*'''dgsGridlist''': The grid list you want to get the horizontal scroll position from
*'''dgsGridList''': The grid list you want to get the horizontal scroll position from


===Returns===
===Returns===

Latest revision as of 11:01, 16 August 2019

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

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

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips