DgsMemoGetHorizontalScrollPosition

From Multi Theft Auto: Wiki

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

Syntax

float dgsMemoGetHorizontalScrollPosition ( element dgsMemo )

OOP Syntax Help! I don't understand this!

Method: dgsMemo:getHorizontalScrollPosition(...)
Variable: .horizontalScrollPosition
Counterpart: dgsMemoSetHorizontalScrollPosition

Required Arguments

  • dgsMemo:The memo you want to set the horizontal scroll position from

Returns

Returns a float ranging between 0 and 100, or false otherwise.

Example

This example Gets 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
    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

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