DgsBlur: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(DGS (OOP Syntax)/(Template Organization) Mission)
Line 7: Line 7:
bool dgsBlur ( element dgsElement )
bool dgsBlur ( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>  
{{DGS/OOP||DGSElement:blur|||dgsFocus}}


===Required Arguments===  
===Required Arguments===  
Line 25: Line 26:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Functions</span>==
{{DGS General Functions}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Events</span>==
{{DGS Events/General}}

Revision as of 01:29, 29 April 2021

This function defocuses a focused DGS element. Used primarily for edit fields, memos, browser etc.

Syntax

bool dgsBlur ( element dgsElement )

DGS OOP Syntax Help! I don't understand this!

Required Arguments

  • dgsElement: the DGS element that you want to defocus

Returns

Returns true if the function was successful, false otherwise.

Example

DGS = exports.dgs

local edit= DGS:dgsCreateEdit ( 0.4, 0.4, 0.4, 0.08, "Test Edit", true )
DGS:dgsFocus(edit)
setTimer(function()
	DGS:dgsBlur(edit)
end,1000,1)

See Also

General Functions

General Events