DgsAttachElements

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

This function allows you to attach a specific dgs element to another dgs element. This will make something like dgsSetParent, but there will be no "parent-child" relationship.

Syntax

bool dgsAttachElements( element dgsElement, element attachTo, int/float offsetX, int/float offsetY, int/float offsetW, int/float offsetH [, bool relativePos = false, bool relativeSize = false ] )

Required Arguments

  • dgsElement: An element you want to get attached
  • attachTo: A dgs element you want to attach to
  • offsetX: A float of the 2D x position of the element on a player's screen. This is affected by the relative argument.
  • offsetY: A float of the 2D x position of the element on a player's screen. This is affected by the relative argument.
  • offsetW: A float of the width of the element. This is affected by the relative argument.
  • offsetH: A float of the height of the window. This is affected by the relative argument.

Optional Arguments

  • relativePos: This is whether sizes and positioning are relative. If this is true, then all x,y floats must be between 0 and 1, representing sizes/positions as a fraction of the screen size. If false, then the size and co-ordinates are based on client's resolution.
  • relativeSize: This is whether sizes and positioning are relative. If this is true, then all width,height floats must be between 0 and 1, representing sizes/positions as a fraction of the screen size. If false, then the size and co-ordinates are based on client's resolution.

Returns

Returns true if successful, false otherwise.

Example

This example attach 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) -- attach label to window

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