DgsDetachElements: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function allows you to detach a specific dgsElement from attached dgsElement ==Syntax== <syntaxhighlight lang="lua"> bool dgsAttachElemen...")
 
(DGS (OOP Syntax)/(Template Organization) Mission)
 
(3 intermediate revisions by one other user not shown)
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsAttachElements( element dgsElement,element attachTo,int offsetX,int offsetY,bool relativePos,int offsetW,int offsetH,bool relativeSize )
bool dgsDetachElements( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:detach|
    Counterpart = dgsAttachElements
}}


===Required Arguments===  
===Required Arguments===  
Line 26: Line 30:
end, 5000, 1 )
end, 5000, 1 )
</syntaxhighlight>
</syntaxhighlight>
{{DGSFUNCTIONS}}
 
=See Also=
 
==<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:12, 3 May 2021

This function allows you to detach a specific dgsElement from attached dgsElement

Syntax

bool dgsDetachElements( element dgsElement )

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

Method: DGSElement:detach(...)
Counterpart: dgsAttachElements

Required Arguments

  • dgsElement: An element you want to detach

Returns

Returns true if successful, false otherwise.

Example

This example detach 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
DGS:dgsAttachElements(label,window,10,20,false,50,50,false) -- attach label to window
setTimer(function()
    DGS:dgsDetachElements(label) -- detach label from window
end, 5000, 1 )

See Also

General Functions

General Events