DgsElementIsAttached

From Multi Theft Auto: Wiki
Revision as of 17:48, 28 April 2020 by Thisdp (talk | contribs)
Jump to navigation Jump to search

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

Syntax

bool dgsElementIsAttached( element dgsElement )

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

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips