CustomScrollPane:setVerticalScrollInversed

From Multi Theft Auto: Wiki
Revision as of 00:54, 31 July 2018 by AriosJentu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function sets Custom Scroll Pane vertical scroll inversed. Needs for events when user scrolling scroller with Middle Mouse Button.

Syntax

nil CustomScrollPane:setVerticalScrollInversed([bool Inversed])

Other Arguments

  • Inversed - Boolean value - is scroll inversed. Default - false

Example

This example sets for Custom Scroll Pane vertical scroll inversed:

local Window = CustomWindow.create(50, 50, 250, 220, "Example")

local SPane = CustomScrollPane.create(5, 25, 240, 190, false, Window)

for i = 0, 4 do
	for j = 0, 9 do
		CustomButton.create(5 + 75*i, 5 + 30*j, 70, 25, "Button "..(i+1).. " "..(j+1), false, SPane)
	end
end

SPane:setVerticalScrollInversed(true)

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets