DgsGetPositionAlignment: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (little correction)
m (DGS OOP Syntax changing)
Line 7: Line 7:
string, string dgsGetPositionAlignment( element dgsElement )
string, string dgsGetPositionAlignment( element dgsElement )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP|The '''Variable''' It's a table and has the following using:
{{DGS/OOP|
    Note = The '''Variable''' It's a table and has the following using:
* <code>positionAlignment[1]</code> for '''horizontal''' alignment
* <code>positionAlignment[1]</code> for '''horizontal''' alignment
* <code>positionAlignment[2]</code> for '''vertical''' alignment
* <code>positionAlignment[2]</code> for '''vertical''' alignment|
|DGSElement:getPositionAlignment||positionAlignment|dgsSetPositionAlignment}}
    Method = DGSElement:getPositionAlignment|
    Variable = positionAlignment|
    Counterpart = dgsSetPositionAlignment
}}


===Required Arguments===  
===Required Arguments===  

Revision as of 21:14, 3 May 2021

This function to get the alignment of position from a specific DGS element

Syntax

string, string dgsGetPositionAlignment( element dgsElement )

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

Note: The Variable It's a table and has the following using:
  • positionAlignment[1] for horizontal alignment
  • positionAlignment[2] for vertical alignment
Method: DGSElement:getPositionAlignment(...)
Variable: .positionAlignment
Counterpart: dgsSetPositionAlignment

Required Arguments

  • dgsElement: The DGS element to change the alignment.

Returns

Return two strings, indicates horizontal and vertical alignment.

  • horizontalAlignment:
    • left
    • center
    • right
  • verticalAlignment:
    • top
    • center
    • bottom

Example

DGS = exports.dgs

local window = DGS:dgsCreateWindow(0.40, 0.33, 0.20, 0.21, "DGS Window", true)
local button = DGS:dgsCreateButton(0.0, 0.0, 0.2, 0.1, "Ok", true, window)

local hAlign,vAlign = DGS:dgsGetPositionAlignment(button)
outputChatBox(hAlign.."-"..vAlibn)

See Also

General Functions

General Events