DgsMemoSetHorizontalScrollPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{client function}} This function is used to set the horizontal scroll position from a memo ==Syntax== <syntaxhighlight lang="lua"> bool dgsMemoSetHorizontalScrollPosition (...")
 
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsMemoSetHorizontalScrollPosition ( element dgsMemo, float fPosition )
bool dgsMemoSetHorizontalScrollPosition ( element dgsMemo, float position )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/DGS/Memo|dgsMemo]]:setHorizontalScrollPosition|horizontalScrollPosition|dgsMemoGetHorizontalScrollPosition}}
{{OOP||[[Element/DGS/Memo|dgsMemo]]:setHorizontalScrollPosition|horizontalScrollPosition|dgsMemoGetHorizontalScrollPosition}}
Line 10: Line 10:
===Required Arguments===
===Required Arguments===
*'''dgsMemo''':The memo you want to set the horizontal scroll position from
*'''dgsMemo''':The memo you want to set the horizontal scroll position from
*'''fPosition''': A float representing the horizontal scroll position (0-100)
*'''position''': A float representing the horizontal scroll position (0-100)


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

Latest revision as of 11:04, 16 August 2019

This function is used to set the horizontal scroll position from a memo

Syntax

bool dgsMemoSetHorizontalScrollPosition ( element dgsMemo, float position )

OOP Syntax Help! I don't understand this!

Method: dgsMemo:setHorizontalScrollPosition(...)
Variable: .horizontalScrollPosition
Counterpart: dgsMemoGetHorizontalScrollPosition


Required Arguments

  • dgsMemo:The memo you want to set the horizontal scroll position from
  • position: A float representing the horizontal scroll position (0-100)

Returns

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

Example

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

local DGS = exports.dgs
local memo = DGS:dgsCreateMemo(0.80, 0.10, 0.15, 0.60,[[1
	2
	3
	4
	5
	6
	7
	8
	9
	10
	11
	12
	13
	14
	15
	16
	17
	18
	19
	20
	21
	22
	23
	24
	25
	26
	27]], true) -- Create the memo

 
if (memo) then -- if the grid list exist then
    DGS:dgsMemoSetHorizontalScrollPosition (memo,50) -- in the middle
    local postion = DGS:dgsMemoGetHorizontalScrollPosition(memo) -- get the horizontal scroll position
    outputChatBox ( "Current position of the horizontal scroll:" ..tostring(position).. "%" ) -- output to the chatbox
else 
    outputChatBox ("Memo not found!") -- if the memo 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