DgsMemoGetVerticalScrollPosition

From Multi Theft Auto: Wiki

Syntax

float dgsMemoGetVerticalScrollPosition ( element dgsMemo )

Required Arguments

  • dgsMemo: the memo you want to know the vertical scroll position of.

Returns

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

Example

This example gets the position of a memo called "theMemo" created with dgsCreateMemo, and outputs it to the chatbox.

DGS = exports.dgs

local theMemo = DGS:dgsCreateMemo( 0, 0, 200, 100, [[Insert
some
long
text
here]], false )

if ( theMemo ) then
    local position = DGS:dgsMemoGetVerticalScrollPosition( theMemo )
    outputChatBox( "Current scroll position of the memo: " .. position .. "%" )
else
    outputChatBox( "Memo 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