DgsFocus: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ This function focuses a defocused DGS element. Used primarily for edit fields, memos, browser etc. ==Syntax== <syntaxhighlight lang="lua"> bool...")
 
(DGS OOP Syntax changing)
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:
bool dgsFocus ( element dgsElement )
bool dgsFocus ( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>  
{{DGS/OOP|
    Method = DGSElement:focus|
    Counterpart = dgsBlur
}}


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


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
{{DGSEVENTS}}
==<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}}

Latest revision as of 22:34, 3 May 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!

Method: DGSElement:focus(...)
Counterpart: dgsBlur

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