DgsFocus: Difference between revisions

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


===Required Arguments===  
===Required Arguments===  
Line 22: Line 23:
</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:28, 29 April 2021

This function focuses a defocused DGS element. Used primarily for edit fields, memos, browser etc.

Syntax

bool dgsFocus ( element dgsElement )

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

Required Arguments

  • dgsElement: the DGS element that you want to focus

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)

See Also

General Functions

General Events