GuiCreateScrollPane

From Multi Theft Auto: Wiki
Revision as of 14:30, 10 February 2008 by R3mp (talk | contribs) (New page: {{Client function}} __NOTOC__ This creates a GUI scroll pane. ==Syntax== <syntaxhighlight lang="lua"> element guiCreateScrollPane( float x, float y, float width, float height, bool relative, [gui-eleme...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This creates a GUI scroll pane.

Syntax

element guiCreateScrollPane( float x, float y, float width, float height, bool relative, [gui-element parent = nil])

Required Arguments

  • x: the 2D x offset of the GUI scrollpane from its parent. This is affected by the relative argument.
  • y: the 2D y offset of the GUI scrollbar from its parent. This is affected by the relative argument.
  • width: the width of the GUI scrollpane. This is affected by the relative argument.
  • height: the height of the GUI scrollpane. This is affected by the relative argument.
  • relative: whether sizes and positions are relative to their parent's. If this is true, then all measures must be between 0 and 1, representing sizes/positions as a fraction of the parent widget's size.

Optional Arguments

  • parent: the gui-element this scrollpane is attached to. By default, it is nil, meaning the widget is attached to the background.

Returns

Example

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