CustomSpinner:getMaximal: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function gets Custom Number Scroller maximal value. == Syntax == <syntaxhighlight lang="lua"> float CustomNumberScroller:getMaximal() </syn...")
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function gets Custom Number Scroller maximal value.
This function gets Custom Spinner maximal value.


== Syntax ==
== Syntax ==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
float CustomNumberScroller:getMaximal()
float CustomSpinner:getMaximal()
</syntaxhighlight>
</syntaxhighlight>


=== Returns ===
=== Returns ===
Returns maximal value for Number Scroller.
Returns maximal value for Spinner.


== Example ==
== Example ==
This example creates window with Number Scroller and prints it's maximal value:
This example creates window with Spinner and prints it's maximal value:


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local Window = CustomWindow.create(50, 50, 200, 55, "Example")
local Window = CustomWindow.create(50, 50, 200, 55, "Example")
local Scroller = CustomNumberScroller.create(5, 25, 190, 25, false, Window)
local Scroller = CustomSpinner.create(5, 25, 190, 25, false, Window)


outputChatBox(Scroller:getMaximal())
outputChatBox(Scroller:getMaximal())

Revision as of 07:07, 6 August 2018

This function gets Custom Spinner maximal value.

Syntax

float CustomSpinner:getMaximal()

Returns

Returns maximal value for Spinner.

Example

This example creates window with Spinner and prints it's maximal value:

local Window = CustomWindow.create(50, 50, 200, 55, "Example")
local Scroller = CustomSpinner.create(5, 25, 190, 25, false, Window)

outputChatBox(Scroller:getMaximal())

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