DgsGridListSetVerticalScrollPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsGridListSetVerticalScrollPosition( element dgsGridList, float fPosition )
bool dgsGridListSetVerticalScrollPosition( element dgsGridList, float position )
</syntaxhighlight>
</syntaxhighlight>


===Required Arguments===
===Required Arguments===
*'''dgsGridList''': The grid list you want to set the vertical scroll position from
*'''dgsGridList''': The grid list you want to set the vertical scroll position from
*'''fPosition''': A float representing the vertical scroll position (0-100)
*'''position ''': A float representing the vertical scroll position (0-100)


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

Latest revision as of 11:02, 16 August 2019

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

Syntax

bool dgsGridListSetVerticalScrollPosition( element dgsGridList, float position )

Required Arguments

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

Returns

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

Example

This example sets the position of the vertical 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:dgsGridListSetVerticalScrollPosition (gridList,50) -- in the middle
    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

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