DgsIsSizeHandled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ This function checks whether the size handler is added to the dgs element. '''Note: You can not check the built-in size handler of dgs window.''...")
 
(DGS (OOP Syntax)/(Template Organization) Mission)
Line 7: Line 7:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
string dgsIsSizeHandled( element dgsElement )
bool dgsIsSizeHandled( element dgsElement )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP||DGSElement:isSizeHandled}}


===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 18:20, 3 May 2021

This function checks whether the size handler is added to the dgs element.

Note: You can not check the built-in size handler of dgs window.

Syntax

bool dgsIsSizeHandled( element dgsElement )

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

Required Arguments

  • dgsElement: The dgs element you want to check.

Returns

Returns true if the dgs element has already had a size handler, false otherwise

Example

DGS = exports.dgs
local button = DGS:dgsCreateButton(0.2,0.2,0.2,0.1,"test",true)
DGS:dgsAddSizeHandler(button,0.2,0.2,0.2,0.2)
local state = DGS:dgsIsSizeHandled(button)
outputChatBox( tostring(state) )

See Also

General Functions

General Events