GuiBlur: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.0157|1.5.6|16361|This function defocuses a focused GUI element. Used primarily for edit fields and memos.}} ==Syntax== <sy...")
 
Line 16: Line 16:


==Example==  
==Example==  
{{Example}}
<syntaxhighlight lang="lua">
local edit= guiCreateMemo ( 0.4, 0.4, 0.4, 0.08, "it's edit!", true )
guiFocus(edit)
</syntaxhighlight>


==See Also==
==See Also==
{{GUI_functions}}
{{GUI_functions}}
{{GUI_events}}
{{GUI_events}}

Revision as of 17:15, 7 July 2019

This function defocuses a focused GUI element. Used primarily for edit fields and memos.

Syntax

bool guiBlur ( element guiElement )

OOP Syntax Help! I don't understand this!

Method: GuiElement:blur(...)


Required Arguments

  • guiElement: the GUI element that you want to defocus

Returns

Returns true if the function was successful, false otherwise.

Example

local edit= guiCreateMemo ( 0.4, 0.4, 0.4, 0.08, "it's edit!", true )
guiFocus(edit)

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

Input

GUI