DgsFocus

From Multi Theft Auto: Wiki
Revision as of 01:28, 29 April 2021 by Lettify (talk | contribs) (DGS (OOP Syntax)/(Template Organization) Mission)
Jump to navigation Jump to search

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