DgsDetachElements

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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