GuiGridListSetVerticalScrollPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
===Required Arguments===
===Required Arguments===
*'''guiGridlist''': The grid list you want to set the vertical scroll position from
*'''guiGridlist''': The grid list you want to set the vertical scroll position from
*'''fPosition''': A float representing the vertical scroll position
*'''fPosition''': A float representing the vertical scroll position (0-100)


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

Revision as of 10:52, 20 September 2013

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

Syntax

bool guiGridListSetVerticalScrollPosition( element guiGridlist, float fPosition )

Required Arguments

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

Returns

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

Requirements

Minimum server version n/a
Minimum client version 1.3.2

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.2" />

Example

-- Todo

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows