DgsElementIsAttached: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(DGS (OOP Syntax)/(Template Organization) Mission)
 
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsElementIsAttached( element dgsElement )
bool dgsElementIsAttached( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:isAttached
}}


===Required Arguments===  
===Required Arguments===  
Line 29: Line 32:
</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}}

Latest revision as of 23:14, 3 May 2021

This function allows you know whether the specific dgs element is attached to other dgs element.

Syntax

bool dgsElementIsAttached( element dgsElement )

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

Method: DGSElement:isAttached(...)

Required Arguments

  • dgsElement: An element you want to check

Returns

Returns true if is attached, false otherwise.

Example

This example check if you attached a label to window

DGS = exports.dgs

window = DGS:dgsCreateWindow(50,50,100,100,"dgs", false) -- create a window
label = DGS:dgsCreateLabel(0,200,100,100,"label", false) -- create a label
outputChatBox(DGS:dgsElementIsAttached(label)) -- check if is label attached to window
DGS:dgsAttachElements(label,window,10,20,false,50,50,false) -- attach label to window
setTimer(function()
    DGS:dgsDetachElements(label) -- detach label from window
    outputChatBox(DGS:dgsElementIsAttached(label)) -- check if is label attached to window
end, 5000, 1 )

See Also

General Functions

General Events